Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
2c6dbd7f5586c3acb0024552967268517b753145
/
.
/
test
/
CodeGen
/
2008-04-08-NoExceptions.c
blob: 6d5d20ff85413d589f3ad44ebf6f9082f6e49924 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
void
f
(
void
);
void
g
(
void
)
{
// CHECK: define void @g() nounwind
// CHECK-NOT: call void @f() nounwind
f
();
}
// CHECK-NOT: declare void @f() nounwind