From 2de4b5e2fc365f077aca1820b400e498c0e13335 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 11 Aug 2008 18:40:47 +0000 Subject: [PATCH] Add test case for -fexceptions llvm-svn: 54647 --- clang/test/CodeGen/unwind-attr.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 clang/test/CodeGen/unwind-attr.c diff --git a/clang/test/CodeGen/unwind-attr.c b/clang/test/CodeGen/unwind-attr.c new file mode 100644 index 000000000000..4d54f4639b30 --- /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) { +} -- GitLab