mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 03:40:35 +00:00
4572ce85b0
llvm-svn: 33296
15 lines
222 B
LLVM
15 lines
222 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | 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
|
|
}
|