new testcase
[oota-llvm.git] / test / Transforms / LICM / 2005-03-24-LICM-Aggregate-Crash.ll
1 ; RUN: llvm-as < %s | opt -licm -disable-output
2
3 void %test({int}* %P) {
4         br label %Loop
5
6 Loop:
7         free {int}* %P
8         br label %Loop
9 }
10