1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-25 03:30:37 +00:00
llvm-6502/test/Transforms/SimplifyCFG/2005-10-02-InvokeSimplify.ll

14 lines
230 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg -disable-output
bool %foo() {
%X = invoke bool %foo() to label %N unwind label %F
F:
ret bool false
N:
br bool %X, label %A, label %B
A:
ret bool true
B:
ret bool true
}