aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-02 05:40:03 +0000
committerChris Lattner <sabre@nondot.org>2005-04-02 05:40:03 +0000
commite21710757db3c3b051e9cbf3e5845501b5f62172 (patch)
treea3152f388180fa6285fc27eeea8ce67499199aee /test
parent597f22f6cd5c0bfa5ffc6ddf4cf5b2796efba867 (diff)
downloadexternal_llvm-e21710757db3c3b051e9cbf3e5845501b5f62172.zip
external_llvm-e21710757db3c3b051e9cbf3e5845501b5f62172.tar.gz
external_llvm-e21710757db3c3b051e9cbf3e5845501b5f62172.tar.bz2
don't forget to use the right code generator :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21017 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/fabs.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fabs.ll b/test/CodeGen/X86/fabs.ll
index 4eca716..216cf8f 100644
--- a/test/CodeGen/X86/fabs.ll
+++ b/test/CodeGen/X86/fabs.ll
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
-; RUN: llvm-as < %s | llc -disable-pattern-isel=0 | grep 'fabs$'
+; RUN: llvm-as < %s | llc -march=x86 -disable-pattern-isel=0 | grep 'fabs$'
declare float %fabsf(float)