diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-06-17 20:53:19 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-06-17 20:53:19 +0000 |
commit | fcbdb6ea5888f61e1ca566629c03fa6de0719750 (patch) | |
tree | 6eec9f15255c02cdd09e1fe40c355e80ef6fc4c6 /clang/test/CodeGen/exceptions.c | |
parent | 7fddeccb8b4694002e3a2130d4bce07d628b1db2 (diff) | |
download | bcm5719-llvm-fcbdb6ea5888f61e1ca566629c03fa6de0719750.tar.gz bcm5719-llvm-fcbdb6ea5888f61e1ca566629c03fa6de0719750.zip |
Update clang to take into account the changes to personality fns
llvm-svn: 239941
Diffstat (limited to 'clang/test/CodeGen/exceptions.c')
-rw-r--r-- | clang/test/CodeGen/exceptions.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGen/exceptions.c b/clang/test/CodeGen/exceptions.c index ae0af4dd9d8..039ec84d2e5 100644 --- a/clang/test/CodeGen/exceptions.c +++ b/clang/test/CodeGen/exceptions.c @@ -5,8 +5,8 @@ void test1() { extern void test1_helper(void (^)(int)); - // CHECK-LABEL: define void @test1() - // CHECK-ARM-LABEL: define arm_aapcscc void @test1() + // CHECK-LABEL: define void @test1() {{.*}} personality i8* bitcast (i32 (...)* @__gcc_personality_v0 to i8*) + // CHECK-ARM-LABEL: define arm_aapcscc void @test1() {{.*}} personality i8* bitcast (i32 (...)* @__gcc_personality_sj0 to i8*) __block int x = 10; @@ -14,9 +14,9 @@ void test1() { // CHECK-ARM: invoke arm_aapcscc void @test1_helper( test1_helper(^(int v) { x = v; }); - // CHECK: landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gcc_personality_v0 to i8*) + // CHECK: landingpad { i8*, i32 } // CHECK-NEXT: cleanup - // CHECK-ARM: landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gcc_personality_sj0 to i8*) + // CHECK-ARM: landingpad { i8*, i32 } // CHECK-ARM-NEXT: cleanup } |