diff options
Diffstat (limited to 'test/CodeGenObjC/exceptions.m')
-rw-r--r-- | test/CodeGenObjC/exceptions.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGenObjC/exceptions.m b/test/CodeGenObjC/exceptions.m index 408b94d..92f6829 100644 --- a/test/CodeGenObjC/exceptions.m +++ b/test/CodeGenObjC/exceptions.m @@ -14,7 +14,7 @@ void f0() { } } -// CHECK: define void @f1() +// CHECK-LABEL: define void @f1() void f1() { extern void foo(void); @@ -40,7 +40,7 @@ void f1() { // Test that modifications to local variables are respected under // optimization. rdar://problem/8160285 -// CHECK: define i32 @f2() +// CHECK-LABEL: define i32 @f2() int f2() { extern void foo(void); @@ -77,7 +77,7 @@ int f2() { // Test that the cleanup destination is saved when entering a finally // block. rdar://problem/8293901 -// CHECK: define void @f3() +// CHECK-LABEL: define void @f3() void f3() { extern void f3_helper(int, int*); @@ -130,7 +130,7 @@ void f3() { void f4() { extern void f4_help(int); - // CHECK: define void @f4() + // CHECK-LABEL: define void @f4() // CHECK: [[EXNDATA:%.*]] = alloca [[EXNDATA_T:%.*]], align // CHECK: call void @objc_exception_try_enter([[EXNDATA_T]]* [[EXNDATA]]) // CHECK: call i32 @_setjmp |