repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
attr-nouwtable.c
blob
faf0b83f9ad67ca464d0923f2c3806a4b941696f
1
// RUN: %clang_cc1 -funwind-tables=2 -emit-llvm %s -o - | FileCheck %s
2
3
__attribute__
((
nouwtable
))
4
int
test1
(
void
) {
return
0
; }
5
6
// CHECK: @test1{{.*}}[[ATTR1:#[0-9]+]]
7
// CHECK: attributes [[ATTR1]] = {
8
// CHECK-NOT: uwtable
9
// CHECK: }