mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
0721aaa8f7
llvm-svn: 48527
10 lines
162 B
LLVM
10 lines
162 B
LLVM
; RUN: llvm-as < %s | opt -licm -disable-output
|
|
|
|
define void @test({ i32 }* %P) {
|
|
br label %Loop
|
|
Loop: ; preds = %Loop, %0
|
|
free { i32 }* %P
|
|
br label %Loop
|
|
}
|
|
|