mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
c072619922
llvm-svn: 47793
11 lines
212 B
LLVM
11 lines
212 B
LLVM
; RUN: llvm-as < %s | opt -instcombine -disable-output
|
|
|
|
define i32 @test() {
|
|
ret i32 0
|
|
|
|
Loop: ; preds = %Loop
|
|
%X = add i32 %X, 1 ; <i32> [#uses=1]
|
|
br label %Loop
|
|
}
|
|
|