diff options
author | Eric Christopher <echristo@gmail.com> | 2019-04-17 02:12:23 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-04-17 02:12:23 +0000 |
commit | a86343512845c9c1fdbac865fea88aa5fce7142a (patch) | |
tree | 666fc6353de19ad8b00e56b67edd33f24104e4a7 /llvm/test/Transforms/LoopVectorize/PowerPC/stride-vectorization.ll | |
parent | 7f8ca6e3679b3af951cb7a4b1377edfaa3244b93 (diff) | |
download | bcm5719-llvm-a86343512845c9c1fdbac865fea88aa5fce7142a.tar.gz bcm5719-llvm-a86343512845c9c1fdbac865fea88aa5fce7142a.zip |
Temporarily Revert "Add basic loop fusion pass."
As it's causing some bot failures (and per request from kbarton).
This reverts commit r358543/ab70da07286e618016e78247e4a24fcb84077fda.
llvm-svn: 358546
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize/PowerPC/stride-vectorization.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/PowerPC/stride-vectorization.ll | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/PowerPC/stride-vectorization.ll b/llvm/test/Transforms/LoopVectorize/PowerPC/stride-vectorization.ll deleted file mode 100644 index f6f2609e8fb..00000000000 --- a/llvm/test/Transforms/LoopVectorize/PowerPC/stride-vectorization.ll +++ /dev/null @@ -1,36 +0,0 @@ -; RUN: opt -S -basicaa -loop-vectorize < %s | FileCheck %s -target datalayout = "E-m:e-i64:64-n32:64" -target triple = "powerpc64-unknown-linux-gnu" - -; Function Attrs: nounwind -define void @foo(double* noalias nocapture %a, double* noalias nocapture readonly %b) #0 { -entry: - br label %for.body - -; CHECK-LABEL: @foo -; CHECK: <2 x double> - -for.cond.cleanup: ; preds = %for.body - ret void - -for.body: ; preds = %for.body, %entry - %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ] - %0 = shl nsw i64 %indvars.iv, 1 - %odd.idx = add nsw i64 %0, 1 - - %arrayidx = getelementptr inbounds double, double* %b, i64 %0 - %arrayidx.odd = getelementptr inbounds double, double* %b, i64 %odd.idx - - %1 = load double, double* %arrayidx, align 8 - %2 = load double, double* %arrayidx.odd, align 8 - - %add = fadd double %1, %2 - %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 - br i1 %exitcond, label %for.cond.cleanup, label %for.body -} - -attributes #0 = { nounwind "target-cpu"="pwr8" } - |