diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-10-08 06:06:57 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-10-08 06:06:57 +0000 |
commit | d8feb1f9a5efd6ddfbce411fa284a2ff3e8f9ee5 (patch) | |
tree | f0b8c51cc9ff1fb199c72af70d8dc5f446d6b13c /test/CodeGen/X86/vec_set-C.ll | |
parent | b9bc43852ceb74c845d28b96594e1ef4ae41329f (diff) | |
download | external_llvm-d8feb1f9a5efd6ddfbce411fa284a2ff3e8f9ee5.zip external_llvm-d8feb1f9a5efd6ddfbce411fa284a2ff3e8f9ee5.tar.gz external_llvm-d8feb1f9a5efd6ddfbce411fa284a2ff3e8f9ee5.tar.bz2 |
Explicitly disable AVX on a bunch of tests so they won't fail on AVX machines post r192171.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192173 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_set-C.ll')
-rw-r--r-- | test/CodeGen/X86/vec_set-C.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/vec_set-C.ll b/test/CodeGen/X86/vec_set-C.ll index 133f23b..9e14829 100644 --- a/test/CodeGen/X86/vec_set-C.ll +++ b/test/CodeGen/X86/vec_set-C.ll @@ -1,6 +1,6 @@ -; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2 | grep movq -; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2 | grep mov | count 1 -; RUN: llc < %s -march=x86-64 -mtriple=x86_64-pc-linux -mattr=+sse2 | grep movd +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2,-avx | grep movq +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2,-avx | grep mov | count 1 +; RUN: llc < %s -march=x86-64 -mtriple=x86_64-pc-linux -mattr=+sse2-avx | grep movd define <2 x i64> @t1(i64 %x) nounwind { %tmp8 = insertelement <2 x i64> zeroinitializer, i64 %x, i32 0 |