summaryrefslogtreecommitdiffstats
path: root/polly/test/ScopDetect/switch-in-loop-patch.ll
blob: 6694446b72ed1dfd5197f5ae3c2b91fe02122ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: opt %loadPolly -polly-detect -analyze < %s | FileCheck %s

; CHECK-NOT: Valid

; Verify that we do not detect loops where the loop latch is a switch statement.
; Such loops are not yet supported by Polly.

define void @f() {
b:
  br label %d

d:
  switch i8 0, label %e [
    i8 71, label %d
    i8 56, label %d
  ]

e:
 ret void
}

OpenPOWER on IntegriCloud