New testcase that crashes licm.

llvm-svn: 20829
This commit is contained in:
Chris Lattner 2005-03-25 05:49:13 +00:00
parent faf7791fea
commit b99c93c93b
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
; RUN: llvm-as < %s | opt -licm -disable-output
void %test({int}* %P) {
br label %Loop
Loop:
free {int}* %P
br label %Loop
}