1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/test/Transforms/TailDup/2003-08-31-UnreachableBlocks.ll

21 lines
300 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | opt -tailduplicate -disable-output
2003-08-31 23:05:39 +02:00
int %foo() {
entry:
br label %return.i
after_ret.i:
br label %return.i
return.i:
%tmp.3 = cast int* null to int
br label %return.i1
after_ret.i1:
br label %return.i1
return.i1:
%tmp.8 = sub int %tmp.3, 0
ret int 0
}