diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-26 05:25:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-26 05:25:05 +0000 |
commit | 825294b85f8ff76a3e0ff87ca86a7483f9c11a34 (patch) | |
tree | 5c95cba525ce6ecaa4233daf1eafa661a417d14a | |
parent | cc60609cb49828ffce2523bc707ff771cb925502 (diff) | |
download | bcm5719-llvm-825294b85f8ff76a3e0ff87ca86a7483f9c11a34.tar.gz bcm5719-llvm-825294b85f8ff76a3e0ff87ca86a7483f9c11a34.zip |
Make sure this forces the x86 targets
llvm-svn: 112169
-rw-r--r-- | llvm/test/CodeGen/X86/sse1.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/sse1.ll b/llvm/test/CodeGen/X86/sse1.ll index 2c1acb62735..8ef665b755f 100644 --- a/llvm/test/CodeGen/X86/sse1.ll +++ b/llvm/test/CodeGen/X86/sse1.ll @@ -1,5 +1,6 @@ ; Tests for SSE1 and below, without SSE2+. -; RUN: llc < %s -mcpu=pentium3 -O3 | FileCheck %s +; RUN: llc < %s -march=x86 -mcpu=pentium3 -O3 | FileCheck %s +; RUN: llc < %s -march=x86-64 -mcpu=pentium3 -O3 | FileCheck %s define <8 x i16> @test1(<8 x i32> %a) nounwind { ; CHECK: test1 |