diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-10-08 06:12:26 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-10-08 06:12:26 +0000 |
commit | 3f0fdbdfd11cbd121607562879229b60f28c6463 (patch) | |
tree | 824e2a05a0c808e27987f6fa3f7674b4709e417e | |
parent | 3ede2f8a16060c6e02bf39eb2b950d47732a53b4 (diff) | |
download | bcm5719-llvm-3f0fdbdfd11cbd121607562879229b60f28c6463.tar.gz bcm5719-llvm-3f0fdbdfd11cbd121607562879229b60f28c6463.zip |
Fix a typo in the mattr part of the run line.
llvm-svn: 192174
-rw-r--r-- | llvm/test/CodeGen/X86/vec_set-C.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/vec_set-C.ll b/llvm/test/CodeGen/X86/vec_set-C.ll index 9e14829b29f..052da30a6bb 100644 --- a/llvm/test/CodeGen/X86/vec_set-C.ll +++ b/llvm/test/CodeGen/X86/vec_set-C.ll @@ -1,6 +1,6 @@ ; 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 +; 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 |