blob: 7ca86536bde6122ea90d03d8b9dbc8d0afe5d15f [file] [log] [blame]
; RUN: llvm-as < %s | opt -sccp -disable-output
implementation
declare int %foo()
void %caller() {
br bool true, label %T, label %F
F:
%X = invoke int %foo() to label %T unwind label %T
T:
ret void
}