[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / polly / test / CodeGen / OpenMP / invariant_base_pointer_preloaded.ll
blob30beef5b07092dcb01f9cf99b2eabf6e1029a802
1 ; RUN: opt %loadPolly -polly-codegen -polly-invariant-load-hoisting=true -polly-parallel \
2 ; RUN: -polly-parallel-force -S < %s | FileCheck %s
4 ; Test to verify that we hand down the preloaded A[0] to the OpenMP subfunction.
6 ;    void f(float *A) {
7 ;      for (int i = 1; i < 1000; i++)
8 ;        A[i] += A[0];
9 ;    }
11 ; CHECK:  %polly.subfn.storeaddr.polly.access.A.load = getelementptr inbounds { float, ptr }, ptr %polly.par.userContext, i32 0
12 ; CHECK:  store float %polly.access.A.load, ptr %polly.subfn.storeaddr.polly.access.A.load
14 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
16 define void @f(ptr nocapture %A) {
17 entry:
18   br label %for.body
20 for.cond.cleanup:                                 ; preds = %for.body
21   ret void
23 for.body:                                         ; preds = %for.body, %entry
24   %indvars.iv = phi i64 [ 1, %entry ], [ %indvars.iv.next, %for.body ]
25   %tmp = load float, ptr %A, align 4
26   %arrayidx1 = getelementptr inbounds float, ptr %A, i64 %indvars.iv
27   %tmp1 = load float, ptr %arrayidx1, align 4
28   %add = fadd float %tmp, %tmp1
29   store float %add, ptr %arrayidx1, align 4
30   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
31   %exitcond = icmp eq i64 %indvars.iv.next, 1000
32   br i1 %exitcond, label %for.cond.cleanup, label %for.body