AMDGPU: Fix warnings introduced by r310336
[llvm-project.git] / polly / test / ForwardOpTree / noforward_synthesizable_unknownit.ll
blob0a7c80a0cd9b3a2f873aea57e7428ad64b4b7be2
1 ; RUN: opt %loadPolly -polly-optree -analyze < %s | FileCheck %s -match-full-lines
3 ; Do not try to forward %i.trunc, it is not synthesizable in %body.
5 define void @func(i32 %n, i32* noalias nonnull %A) {
6 entry:
7   br label %for
9 for:
10   %j = phi i32 [0, %entry], [%j.inc, %inc]
11   %j.cmp = icmp slt i32 %j, %n
12   %zero = sext i32 0 to i64
13   br i1 %j.cmp, label %inner.for, label %exit
16     ; This loop has some unusual properties:
17     ; * It has a known iteration count (8), therefore SCoP-compatible.
18     ; * %i.trunc is synthesizable within the loop ({1,+,1}<%while.body>).
19     ; * %i.trunc is not synthesizable outside of the loop, because its value is
20     ;   unknown when exiting.
21     ;   (should be 8, but ScalarEvolution currently seems unable to derive that)
22     ;
23     ; ScalarEvolution currently seems to not able to handle the %zero.
24     ; If it becomes more intelligent, there might be other such loop constructs.
25     inner.for:
26       %i = phi i64 [%zero, %for], [%i.inc, %inner.for]
27       %i.inc = add nuw nsw i64 %i, 1
28       %i.trunc = trunc i64 %i.inc to i32
29       %i.and = and i32 %i.trunc, 7
30       %inner.cond = icmp eq i32 %i.and, 0
31       br i1 %inner.cond, label %body, label %inner.for
33     body:
34       store i32 %i.trunc, i32* %A
35       br label %inc
38 inc:
39   %j.inc = add nuw nsw i32 %j, 1
40   br label %for
42 exit:
43   br label %return
45 return:
46   ret void
50 ; CHECK: ForwardOpTree executed, but did not modify anything