1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/Transforms/ADCE/2003-09-15-InfLoopCrash.ll
Chris Lattner 3178b8abbc new testcase that crashes opt
llvm-svn: 8536
2003-09-15 15:29:11 +00:00

9 lines
104 B
LLVM

; RUN: llvm-as < %s | opt -adce -disable-output
int %main() {
br label %loop
loop:
br label %loop
}