summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHal Finkel <hfinkel@anl.gov>2015-02-17 00:11:19 +0000
committerHal Finkel <hfinkel@anl.gov>2015-02-17 00:11:19 +0000
commit7f957c17a0e2e00d82c373a5ae9f836be0bdb38a (patch)
tree871f8bf653c63e7454700322ef622f9a427c66cc
parentb4749379299e852f7d35d054ddeadd71d6dc695f (diff)
downloadbcm5719-llvm-7f957c17a0e2e00d82c373a5ae9f836be0bdb38a.tar.gz
bcm5719-llvm-7f957c17a0e2e00d82c373a5ae9f836be0bdb38a.zip
Specify arch in test/CodeGen/X86/float-conv-elim.ll
This test was failing on non-x86 hosts because it specified a cpu of x86_64, but not an architecture. x86_64 is obviously not a valid cpu on all architectures. llvm-svn: 229460
-rw-r--r--llvm/test/CodeGen/X86/float-conv-elim.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/float-conv-elim.ll b/llvm/test/CodeGen/X86/float-conv-elim.ll
index 13dde4a799d..3feff851d91 100644
--- a/llvm/test/CodeGen/X86/float-conv-elim.ll
+++ b/llvm/test/CodeGen/X86/float-conv-elim.ll
@@ -1,4 +1,4 @@
-; RUN: llc -mcpu=x86-64 < %s | FileCheck %s
+; RUN: llc -march=x86-64 -mcpu=x86-64 < %s | FileCheck %s
; Make sure the float conversion is folded away as it should be.
; CHECK-LABEL: foo
OpenPOWER on IntegriCloud