Sign in
llvm
/
clang
/
refs/heads/release_27
/
.
/
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
;
}