commit | 709c00cf6e88a1acfe2b27e61c9dc5f7a71e49b9 | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Mon Aug 11 18:40:47 2008 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Mon Aug 11 18:40:47 2008 +0000 |
tree | fb965f31b63b665b588f771eb926d7c782e21403 | |
parent | 208ff5e8a073de2a5d15cbe03cab8a4c0d935e28 [diff] [blame] |
Add test case for -fexceptions git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54647 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/unwind-attr.c b/test/CodeGen/unwind-attr.c new file mode 100644 index 0000000..4d54f46 --- /dev/null +++ b/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) { +}