mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
f94bcf3c85
no meaning if the code is not reachable. llvm-svn: 12657
9 lines
125 B
LLVM
9 lines
125 B
LLVM
; RUN: llvm-as < %s | opt -instcombine -disable-output
|
|
|
|
int %test() {
|
|
ret int 0
|
|
Loop:
|
|
%X = add int %X, 1
|
|
br label %Loop
|
|
}
|