blob: 26f0a8e93dff4a675649d7b1b79cbfcea9acbf42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; RUN: opt %loadPolly -passes='polly-prepare,scop(print<polly-ast>)' -S < %s \
; RUN: | FileCheck %s
; This testcase tests plugin registration. Check-lines below serve to verify
; that the passes actually ran.
; CHECK-LABEL: void @foo
; CHECK-NEXT: entry:
; CHECK-NEXT: br label %entry.split
define void @foo() {
entry:
ret void
}
|