diff options
author | Duncan Sands <baldrick@free.fr> | 2008-10-28 09:55:04 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-10-28 09:55:04 +0000 |
commit | 42d4499a16577fd1e32bb7769e2b35adde2aa364 (patch) | |
tree | 5bfde2a900e6b39e8c6bf605ea03d228e6516511 | |
parent | 1acb29c8ead8b7a6ac5dd63720711d397ac25ad9 (diff) | |
download | external_llvm-42d4499a16577fd1e32bb7769e2b35adde2aa364.zip external_llvm-42d4499a16577fd1e32bb7769e2b35adde2aa364.tar.gz external_llvm-42d4499a16577fd1e32bb7769e2b35adde2aa364.tar.bz2 |
Turn off LegalizeTypes for this test for the
moment, while waiting for a proper solution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58324 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/PowerPC/vec_splat.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/vec_splat.ll b/test/CodeGen/PowerPC/vec_splat.ll index a631137..bc860cb 100644 --- a/test/CodeGen/PowerPC/vec_splat.ll +++ b/test/CodeGen/PowerPC/vec_splat.ll @@ -1,7 +1,7 @@ ; Test that vectors are scalarized/lowered correctly. ; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g3 | \ ; RUN: grep stfs | count 4 -; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 -o %t -f +; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 -o %t -f -disable-legalize-types ; RUN: grep vspltw %t | count 2 ; RUN: grep vsplti %t | count 3 ; RUN: grep vsplth %t | count 1 |