]> granicus.if.org Git - clang/commitdiff
Add test case for -fexceptions
authorDaniel Dunbar <daniel@zuster.org>
Mon, 11 Aug 2008 18:40:47 +0000 (18:40 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 11 Aug 2008 18:40:47 +0000 (18:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54647 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/unwind-attr.c [new file with mode: 0644]

diff --git a/test/CodeGen/unwind-attr.c b/test/CodeGen/unwind-attr.c
new file mode 100644 (file)
index 0000000..4d54f46
--- /dev/null
@@ -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) {
+}