mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
10 lines
219 B
LLVM
10 lines
219 B
LLVM
|
;RUN: opt -disable-output -passes=loop-interchange -print-after-all < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
; CHECK: IR Dump After LoopInterchangePass
|
||
|
define void @foo() {
|
||
|
entry:
|
||
|
br label %for.cond
|
||
|
for.cond:
|
||
|
br label %for.cond
|
||
|
}
|