diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-26 05:52:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-26 05:52:42 +0000 |
commit | 4bbdb4c78c7ae51c299ba180755919612d392af9 (patch) | |
tree | 79460170a2d2d9ebf9e1e47f5873f88974bf75df | |
parent | 8306968c147d5861d8a53fba86ac0fbf5c050b84 (diff) | |
download | external_llvm-4bbdb4c78c7ae51c299ba180755919612d392af9.zip external_llvm-4bbdb4c78c7ae51c299ba180755919612d392af9.tar.gz external_llvm-4bbdb4c78c7ae51c299ba180755919612d392af9.tar.bz2 |
I think enough general codegen bugs are fixed to allow this to work
on random hosts, lets see!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112172 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/vec_cast.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CodeGen/X86/vec_cast.ll b/test/CodeGen/X86/vec_cast.ll index 4e80502..6f18d13 100644 --- a/test/CodeGen/X86/vec_cast.ll +++ b/test/CodeGen/X86/vec_cast.ll @@ -1,7 +1,5 @@ -; RUN: true -; llc < %s -march=x86-64 -; RUN: true -;llc < %s -march=x86-64 -disable-mmx +; RUN: llc < %s -march=x86-64 +; RUN: llc < %s -march=x86-64 -disable-mmx define <8 x i32> @a(<8 x i16> %a) nounwind { %c = sext <8 x i16> %a to <8 x i32> |