hanchenye-llvm-project/clang/test/CodeGen/unwind-attr.c

7 lines
189 B
C

// RUN: %clang_cc1 -fexceptions -emit-llvm -o - %s | grep "@foo()" | not grep nounwind
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "@foo()" | grep nounwind
int foo(void) {
return 0;
}