unwind-attr.c revision d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
1// RUN: clang-cc -fexceptions -emit-llvm -o - %s | grep "@foo() {" | count 1 &&
2// RUN: clang-cc -emit-llvm -o - %s | grep "@foo() nounwind {" | count 1
3
4int foo(void) {
5}
6