diff options
author | Reid Kleckner <rnk@google.com> | 2015-09-11 17:27:52 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-09-11 17:27:52 +0000 |
commit | 5dbee7baef101399992f4cea8a8ebbb94b1f3e39 (patch) | |
tree | 560b131e6676fc83fe8c7fdecf3fba776bd53ab5 /llvm/test/Bitcode | |
parent | 5c8bd88a4c3ad31e64b5a7100c9fc1785f208031 (diff) | |
download | bcm5719-llvm-5dbee7baef101399992f4cea8a8ebbb94b1f3e39.tar.gz bcm5719-llvm-5dbee7baef101399992f4cea8a8ebbb94b1f3e39.zip |
[IR] Print the label operands of a catchpad like an invoke
The rest of the EH pads are fine, since they have at most one label and
take fewer operands for the personality.
Old catchpad vs. new:
%5 = catchpad [i8* bitcast (i32 ()* @"\01?filt$0@0@main@@" to i8*)] to label %__except.ret.10 unwind label %catchendblock.9
-----
%5 = catchpad [i8* bitcast (i32 ()* @"\01?filt$0@0@main@@" to i8*)]
to label %__except.ret.10 unwind label %catchendblock.9
llvm-svn: 247433
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r-- | llvm/test/Bitcode/compatibility.ll | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/test/Bitcode/compatibility.ll b/llvm/test/Bitcode/compatibility.ll index 400d4a4001e..9c4c958c985 100644 --- a/llvm/test/Bitcode/compatibility.ll +++ b/llvm/test/Bitcode/compatibility.ll @@ -773,15 +773,18 @@ entry: catchpad1: catchpad [] to label %normal unwind label %exn.1 - ; CHECK: catchpad [] to label %normal unwind label %exn.1 + ; CHECK: catchpad [] + ; CHECK-NEXT: to label %normal unwind label %exn.1 catchpad2: catchpad [i32* %arg1] to label %normal unwind label %exn.2 - ; CHECK: catchpad [i32* %arg1] to label %normal unwind label %exn.2 + ; CHECK: catchpad [i32* %arg1] + ; CHECK-NEXT: to label %normal unwind label %exn.2 catchpad3: catchpad [i32* %arg1, i32* %arg2] to label %normal unwind label %exn.3 - ; CHECK: catchpad [i32* %arg1, i32* %arg2] to label %normal unwind label %exn.3 + ; CHECK: catchpad [i32* %arg1, i32* %arg2] + ; CHECK-NEXT: to label %normal unwind label %exn.3 exn.1: catchendpad unwind label %terminate.1 @@ -835,7 +838,8 @@ cleanup: catchpad: %catch = catchpad [] to label %body unwind label %catchend - ; CHECK: %catch = catchpad [] to label %body unwind label %catchend + ; CHECK: %catch = catchpad [] + ; CHECK-NEXT: to label %body unwind label %catchend body: invoke void @f.ccc() to label %continue unwind label %catchend |