blob: 7d533b7a3a2e09ce7b8681c7bd00fc71d94821bb [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) {
Bill Wendlingf7a9da02013-02-20 07:22:19 +00005 // CHECK: define void @g() #0
Eric Christopher3883e662011-07-26 22:17:02 +00006 // CHECK-NOT: call void @f() nounwind
7 f();
8}
9
Bill Wendlingf7a9da02013-02-20 07:22:19 +000010// CHECK-NOT: declare void @f() #0
11
12// CHECK: attributes #0 = { nounwind {{.*}} }
13// CHECK: attributes #1 = { "target-features"={{.*}} }