1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/test/Transforms/LICM/2005-03-24-LICM-Aggregate-Crash.ll

10 lines
162 B
LLVM
Raw Normal View History

; 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
}