[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / arc-with-atthrow.m
blob40a10d63295be9d68949d01ac083680058861de7
1 // RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fobjc-exceptions -o - %s | FileCheck %s
2 // pr10411
3 // rdar://10042689
5 id make(void);
6 void test(void) { 
7   @throw make();
10 // TODO: We should probably emit this specific pattern without the reclaim.
12 // CHECK-LABEL:    define{{.*}} void @test()
13 // CHECK:      [[T0:%.*]] = call i8* @make()
14 // CHECK-NEXT: [[T1:%.*]] = notail call i8* @llvm.objc.retainAutoreleasedReturnValue(i8* [[T0]])
15 // CHECK-NEXT: [[T2:%.*]] = call i8* @llvm.objc.autorelease(i8* [[T1]])
16 // CHECK-NEXT: call void @objc_exception_throw(i8* [[T2]]) [[NR:#[0-9]+]]
17 // CHECK-NEXT: unreachable
19 // CHECK: attributes [[NR]] = { noreturn }