blob: ab2781b58b9c21fddb90b450273feb84eb4ef8b3 [file] [log] [blame]
Nuno Lopes060ddb02012-05-09 21:21:49 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s | FileCheck %s
Eric Christopher3883e662011-07-26 22:17:02 +00002
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