diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-26 06:57:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-26 06:57:07 +0000 |
commit | 341fa09a3c842e8a0df3510d3f9af186ede976c9 (patch) | |
tree | b325e3c76d7e583339e030c5f6fb517f8ae8ed1f /test/CodeGen/X86/vec_cast.ll | |
parent | 4bbdb4c78c7ae51c299ba180755919612d392af9 (diff) |
Add a hackaround for PR7993 which is causing failures on x86 builders that lack sse2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112175 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_cast.ll')
-rw-r--r-- | test/CodeGen/X86/vec_cast.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGen/X86/vec_cast.ll b/test/CodeGen/X86/vec_cast.ll index 6f18d13cc9..fd3e84e7fe 100644 --- a/test/CodeGen/X86/vec_cast.ll +++ b/test/CodeGen/X86/vec_cast.ll @@ -1,5 +1,6 @@ -; RUN: llc < %s -march=x86-64 -; RUN: llc < %s -march=x86-64 -disable-mmx +; RUN: llc < %s -march=x86-64 -mcpu=core2 +; RUN: llc < %s -march=x86-64 -mcpu=core2 -disable-mmx + define <8 x i32> @a(<8 x i16> %a) nounwind { %c = sext <8 x i16> %a to <8 x i32> |