mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
c072619922
llvm-svn: 47793
10 lines
156 B
LLVM
10 lines
156 B
LLVM
; RUN: llvm-as < %s | opt -adce -disable-output
|
|
|
|
define i32 @main() {
|
|
br label %loop
|
|
|
|
loop: ; preds = %loop, %0
|
|
br label %loop
|
|
}
|
|
|