summaryrefslogtreecommitdiff
path: root/test/Transforms/LICM/2005-03-24-LICM-Aggregate-Crash.ll
blob: 6c5b1a57e1758c1affe321b9bcbb8082df8c720a (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | opt -licm -disable-output

void %test({int}* %P) {
	br label %Loop

Loop:
	free {int}* %P
	br label %Loop
}