diff options
Diffstat (limited to 'test/CodeGenObjC/arc-exceptions.m')
-rw-r--r-- | test/CodeGenObjC/arc-exceptions.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenObjC/arc-exceptions.m b/test/CodeGenObjC/arc-exceptions.m index aa3d2f3..dafffd8 100644 --- a/test/CodeGenObjC/arc-exceptions.m +++ b/test/CodeGenObjC/arc-exceptions.m @@ -11,7 +11,7 @@ void test0(void) { } @catch (Ety *e) { } } -// CHECK: define void @test0() +// CHECK-LABEL: define void @test0() // CHECK: [[E:%.*]] = alloca [[ETY:%.*]]*, align 8 // CHECK-NEXT: invoke void @test0_helper() // CHECK: [[T0:%.*]] = call i8* @objc_begin_catch( @@ -31,7 +31,7 @@ void test1(void) { } @catch (__weak Ety *e) { } } -// CHECK: define void @test1() +// CHECK-LABEL: define void @test1() // CHECK: [[E:%.*]] = alloca [[ETY:%.*]]*, align 8 // CHECK-NEXT: invoke void @test1_helper() // CHECK: [[T0:%.*]] = call i8* @objc_begin_catch( |