[llvm-commits] [llvm] r63579 - /llvm/trunk/test/CodeGen/X86/bt.ll
Dan Gohman
gohman at apple.com
Mon Feb 2 16:20:22 PST 2009
Author: djg
Date: Mon Feb 2 18:20:22 2009
New Revision: 63579
URL: http://llvm.org/viewvc/llvm-project?rev=63579&view=rev
Log:
Add explicit -march=x86 to these tests so that they don't
default to -march=x86-64 on 64-bit hosts.
Modified:
llvm/trunk/test/CodeGen/X86/bt.ll
Modified: llvm/trunk/test/CodeGen/X86/bt.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/bt.ll?rev=63579&r1=63578&r2=63579&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/bt.ll (original)
+++ llvm/trunk/test/CodeGen/X86/bt.ll Mon Feb 2 18:20:22 2009
@@ -1,6 +1,6 @@
; RUN: llvm-as < %s | llc -march=x86 | grep btl | count 28
-; RUN: llvm-as < %s | llc -mcpu=pentium4 | grep btl | not grep esp
-; RUN: llvm-as < %s | llc -mcpu=penryn | grep btl | not grep esp
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=pentium4 | grep btl | not grep esp
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=penryn | grep btl | not grep esp
; PR3253
; The register+memory form of the BT instruction should be usable on
More information about the llvm-commits
mailing list