diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-10-26 00:05:26 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-10-26 00:05:26 +0000 |
commit | 822ab00847da841a63be4e3883cb5f442dc69069 (patch) | |
tree | 0c7f6d4323dd7ef22f158ab3d1f729aa37adec8c /test/Transforms/BBVectorize | |
parent | 0636291137c874388617d9ca59dbb7a86e8de84e (diff) |
Disable generation of pointer vectors by BBVectorize.
Once vector-of-pointer support works, then this can be reverted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/BBVectorize')
-rw-r--r-- | test/Transforms/BBVectorize/simple-ldstr-ptrs.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Transforms/BBVectorize/simple-ldstr-ptrs.ll b/test/Transforms/BBVectorize/simple-ldstr-ptrs.ll index 6294543cd8..d46f7692b6 100644 --- a/test/Transforms/BBVectorize/simple-ldstr-ptrs.ll +++ b/test/Transforms/BBVectorize/simple-ldstr-ptrs.ll @@ -2,6 +2,9 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3 ; 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-aligned-only -instcombine -gvn -S | FileCheck %s -check-prefix=CHECK-AO +; FIXME: re-enable this once pointer vectors work properly +; XFAIL: * + ; Simple 3-pair chain also with loads and stores (using ptrs and gep) define double @test1(i64* %a, i64* %b, i64* %c) nounwind uwtable readonly { entry: |