blob: 254d30ac3c28741205244be1289b8e5358b232ec [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) {
Anna Zaksc2833112013-02-25 19:51:03 +00005 // CHECK: define void @g() #0
Eric Christopher3883e662011-07-26 22:17:02 +00006 // CHECK-NOT: call void @f() nounwind
7 f();
8}
9
Anna Zaksc2833112013-02-25 19:51:03 +000010// CHECK-NOT: declare void @f() #0
Bill Wendlingf7a9da02013-02-20 07:22:19 +000011
Bill Wendlingc3af6792013-02-26 23:08:48 +000012// CHECK: attributes #0 = { nounwind{{.*}} }