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 | 7376320f3bb36d4e1173f338c3cc15284fdf042b (patch) | |
| tree | b9cfdfbb1d00e63827cec181b7d093e462d918a0 | |
| parent | 3e90f52496ed61ff3369d40b5cf39537e931d94b (diff) | |
| download | external_llvm-7376320f3bb36d4e1173f338c3cc15284fdf042b.zip external_llvm-7376320f3bb36d4e1173f338c3cc15284fdf042b.tar.gz external_llvm-7376320f3bb36d4e1173f338c3cc15284fdf042b.tar.bz2 | |
Make sure this forces the x86 targets
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112169 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | test/CodeGen/X86/sse1.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/X86/sse1.ll b/test/CodeGen/X86/sse1.ll index 2c1acb6..8ef665b 100644 --- a/test/CodeGen/X86/sse1.ll +++ b/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 |
