diff options
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/CodeGen/unwind-attr.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/unwind-attr.c b/clang/test/CodeGen/unwind-attr.c new file mode 100644 index 00000000000..4d54f4639b3 --- /dev/null +++ b/clang/test/CodeGen/unwind-attr.c @@ -0,0 +1,5 @@ +// RUN: clang -fexceptions -emit-llvm -o - %s | grep "@foo() {" | count 1 +// RUN: clang -emit-llvm -o - %s | grep "@foo() nounwind {" | count 1 + +int foo(void) { +} |