mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
removal of invoke, PR1269. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48084 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
417 B
LLVM
16 lines
417 B
LLVM
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep unwind_to
|
|
|
|
define i8 @test7(i1 %b) {
|
|
entry: unwind_to %cleanup
|
|
br i1 %b, label %cond_true, label %cond_false
|
|
cond_true: unwind_to %cleanup
|
|
br label %cleanup
|
|
cond_false: unwind_to %cleanup
|
|
br label %cleanup
|
|
cleanup:
|
|
%x = phi i8 [0, %entry], [1, %cond_true], [1, %cond_true],
|
|
[2, %cond_false], [2, %cond_false]
|
|
ret i8 %x
|
|
}
|
|
|