1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/Regression/Transforms/LICM/2005-03-24-LICM-Aggregate-Crash.ll
Chris Lattner 2f53f43a07 New testcase that crashes licm.
llvm-svn: 20829
2005-03-25 05:49:13 +00:00

11 lines
131 B
LLVM

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