forked from OSchip/llvm-project
11 lines
146 B
LLVM
11 lines
146 B
LLVM
|
; RUN: llvm-upgrade < %s | llvm-as | opt -licm -disable-output
|
||
|
|
||
|
void %test({int}* %P) {
|
||
|
br label %Loop
|
||
|
|
||
|
Loop:
|
||
|
free {int}* %P
|
||
|
br label %Loop
|
||
|
}
|
||
|
|