summaryrefslogtreecommitdiffstats
path: root/polly/test/Isl/CodeGen/alias-check-multi-dim.ll
blob: 4a09d193ab8e2f57cf07efcb8790b808cc593e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
; RUN: opt %loadPolly -polly-codegen -polly-delinearize -S < %s | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

; CHECK: sext i32 %indvar.init to i64

define void @foo(double* %A, double* %B, i32 %p, i32 %indvar.init) {
preheader:
  br label %for.body

for.body:
  %indvar = phi i32 [ %indvar.next, %for.body ], [ %indvar.init, %preheader ]
  %B.ptr0 = getelementptr inbounds double, double* %B, i64 0
  %tmp1 = load double, double* %B.ptr0
  %A.ptr = getelementptr inbounds double, double* %A, i64 0
  store double undef, double* %A.ptr
  %idxprom1329 = sext i32 %indvar to i64
  %B.ptr1 = getelementptr inbounds double, double* %B, i64 %idxprom1329
  store double 0.000000e+00, double* %B.ptr1
  %indvar.next = add nsw i32 %indvar, %p
  br i1 false, label %for.body, label %exit

exit:
  ret void
}
OpenPOWER on IntegriCloud