blob: 729cf107a90304fe0dcf2f690add32c9e81e6e71 [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o - %s | FileCheck %s
John McCall4027f092011-06-24 23:29:50 +00002
3void test0(void) {
4 extern id test0_helper(void);
5 __attribute__((objc_precise_lifetime)) id x = test0_helper();
6 test0_helper();
Stephen Lin93ab6bf2013-08-15 06:47:53 +00007 // CHECK-LABEL: define void @test0()
John McCall4027f092011-06-24 23:29:50 +00008 // CHECK: [[T0:%.*]] = call i8* @test0_helper()
9 // CHECK-NEXT: store i8* [[T0]], i8** [[X:%.*]], align 8
10 // CHECK-NEXT: call i8* @test0_helper()
11 // CHECK-NEXT: [[T0:%.*]] = load i8** [[X]], align 8
Bill Wendling4e1125f2013-02-22 09:10:20 +000012 // CHECK-NEXT: call void asm sideeffect "", "r"(i8* [[T0]]) [[NUW:#[0-9]+]]
John McCall4027f092011-06-24 23:29:50 +000013 // CHECK-NEXT: ret void
14}
Bill Wendling4e1125f2013-02-22 09:10:20 +000015
16// CHECK: attributes [[NUW]] = { nounwind }