mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 03:28:35 +00:00
8d84372836
of using llvm-as, now that opt supports this. llvm-svn: 81226
10 lines
150 B
LLVM
10 lines
150 B
LLVM
; RUN: opt %s -licm -disable-output
|
|
|
|
define void @test({ i32 }* %P) {
|
|
br label %Loop
|
|
Loop: ; preds = %Loop, %0
|
|
free { i32 }* %P
|
|
br label %Loop
|
|
}
|
|
|