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