Sign in
llvm
/
llvm-project
/
clang
/
2b5defad0e3cadbcf8fe421135516f44d53c5dc9
/
.
/
test
/
CodeGen
/
unwind-attr.c
blob: ee3199d274ddf5976a88a6cd180dd738d7e2953c [
file
] [
log
] [
blame
]
// 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
;
}