544dee3a283fc60b6f20a3f6765c82223db56efe
[oota-llvm.git] / test / Transforms / LICM / 2005-03-24-LICM-Aggregate-Crash.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | 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