You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
340 B
22 lines
340 B
; 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
|
|
}
|
|
|