blob: 6d5d20ff85413d589f3ad44ebf6f9082f6e49924 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3void f(void);
4void g(void) {
5 // CHECK: define void @g() nounwind
6 // CHECK-NOT: call void @f() nounwind
7 f();
8}
9
10// CHECK-NOT: declare void @f() nounwind