summaryrefslogtreecommitdiff
path: root/test/Transforms/BBVectorize/simple-int.ll
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-01-07 10:22:36 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-01-07 10:22:36 +0000
commit8bd6c52396ab6e7955fdcc1bce099b7cba29a308 (patch)
treefd8f9f08d9f5aa0bd87ee81e99ad15786060ed03 /test/Transforms/BBVectorize/simple-int.ll
parent0c63e64af6b2b25f44e33dcdf0b42968cbd0a581 (diff)
downloadllvm-8bd6c52396ab6e7955fdcc1bce099b7cba29a308.tar.gz
llvm-8bd6c52396ab6e7955fdcc1bce099b7cba29a308.tar.bz2
llvm-8bd6c52396ab6e7955fdcc1bce099b7cba29a308.tar.xz
Switch BBVectorize to directly depend on having a TTI analysis.
This could be simplified further, but Hal has a specific feature for ignoring TTI, and so I preserved that. Also, I needed to use it because a number of tests fail when switching from a null TTI to the NoTTI nonce implementation. That seems suspicious to me and so may be something that you need to look into Hal. I worked it by preserving the old behavior for these tests with the flag that ignores all target info. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/BBVectorize/simple-int.ll')
-rw-r--r--test/Transforms/BBVectorize/simple-int.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/BBVectorize/simple-int.ll b/test/Transforms/BBVectorize/simple-int.ll
index 179a1fdf95..d7b7d6b8fd 100644
--- a/test/Transforms/BBVectorize/simple-int.ll
+++ b/test/Transforms/BBVectorize/simple-int.ll
@@ -1,5 +1,5 @@
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
-; RUN: opt < %s -bb-vectorize -bb-vectorize-req-chain-depth=3 -instcombine -gvn -S | FileCheck %s
+; RUN: opt < %s -bb-vectorize -bb-vectorize-req-chain-depth=3 -bb-vectorize-ignore-target-info -instcombine -gvn -S | FileCheck %s
declare double @llvm.fma.f64(double, double, double)
declare double @llvm.fmuladd.f64(double, double, double)