blob: 6d5d20ff85413d589f3ad44ebf6f9082f6e49924 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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
|