diff options
Diffstat (limited to 'test/CodeGen/PowerPC/loop-data-prefetch.ll')
-rw-r--r-- | test/CodeGen/PowerPC/loop-data-prefetch.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/PowerPC/loop-data-prefetch.ll b/test/CodeGen/PowerPC/loop-data-prefetch.ll index 8871481..59b74e6 100644 --- a/test/CodeGen/PowerPC/loop-data-prefetch.ll +++ b/test/CodeGen/PowerPC/loop-data-prefetch.ll @@ -9,10 +9,10 @@ entry: for.body: ; preds = %for.body, %entry %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ] - %arrayidx = getelementptr inbounds double* %b, i64 %indvars.iv - %0 = load double* %arrayidx, align 8 + %arrayidx = getelementptr inbounds double, double* %b, i64 %indvars.iv + %0 = load double, double* %arrayidx, align 8 %add = fadd double %0, 1.000000e+00 - %arrayidx2 = getelementptr inbounds double* %a, i64 %indvars.iv + %arrayidx2 = getelementptr inbounds double, double* %a, i64 %indvars.iv store double %add, double* %arrayidx2, align 8 %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1 %exitcond = icmp eq i64 %indvars.iv.next, 1600 |