diff options
Diffstat (limited to 'test/Transforms/LoopVectorize/funcall.ll')
-rw-r--r-- | test/Transforms/LoopVectorize/funcall.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LoopVectorize/funcall.ll b/test/Transforms/LoopVectorize/funcall.ll index e03534f..35c2dfc 100644 --- a/test/Transforms/LoopVectorize/funcall.ll +++ b/test/Transforms/LoopVectorize/funcall.ll @@ -16,8 +16,8 @@ entry: for.body: %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ] - %arrayidx = getelementptr inbounds double* %d, i64 %indvars.iv - %0 = load double* %arrayidx, align 8 + %arrayidx = getelementptr inbounds double, double* %d, i64 %indvars.iv + %0 = load double, double* %arrayidx, align 8 %1 = tail call double @llvm.pow.f64(double %0, double %t) store double %1, double* %arrayidx, align 8 %indvars.iv.next = add i64 %indvars.iv, 1 |