aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-07-05 03:56:55 +0000
committerChris Lattner <sabre@nondot.org>2010-07-05 03:56:55 +0000
commit4fd1ab3bec5bb0fef4595628b3b6baa209457380 (patch)
treef03b3bac23f22696869c4ecd8468f6e939fc6fae
parentb1e11455d1cf4df081a9593660d194c1a53b4334 (diff)
downloadexternal_llvm-4fd1ab3bec5bb0fef4595628b3b6baa209457380.zip
external_llvm-4fd1ab3bec5bb0fef4595628b3b6baa209457380.tar.gz
external_llvm-4fd1ab3bec5bb0fef4595628b3b6baa209457380.tar.bz2
fix test on non-x86 hosts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107608 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/v2f32.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/v2f32.ll b/test/CodeGen/X86/v2f32.ll
index 0b83ff8..93ab68e 100644
--- a/test/CodeGen/X86/v2f32.ll
+++ b/test/CodeGen/X86/v2f32.ll
@@ -1,5 +1,5 @@
; RUN: llc < %s -march=x86-64 -asm-verbose=0 -o - | FileCheck %s -check-prefix=X64
-; RUN: llc < %s -march=x86 -asm-verbose=0 -o - | FileCheck %s -check-prefix=X32
+; RUN: llc < %s -mcpu=yonah -march=x86 -asm-verbose=0 -o - | FileCheck %s -check-prefix=X32
; PR7518
define void @test1(<2 x float> %Q, float *%P2) nounwind {