Fix comment in llvm.mli.
[oota-llvm.git] / test / Transforms / LICM / 2005-03-24-LICM-Aggregate-Crash.ll
1 ; RUN: llvm-as < %s | opt -licm -disable-output
2
3 define void @test({ i32 }* %P) {
4         br label %Loop
5 Loop:           ; preds = %Loop, %0
6         free { i32 }* %P
7         br label %Loop
8 }
9