mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
2f53f43a07
llvm-svn: 20829
11 lines
131 B
LLVM
11 lines
131 B
LLVM
; RUN: llvm-as < %s | opt -licm -disable-output
|
|
|
|
void %test({int}* %P) {
|
|
br label %Loop
|
|
|
|
Loop:
|
|
free {int}* %P
|
|
br label %Loop
|
|
}
|
|
|