diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-03 00:20:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-03 00:20:22 +0000 |
commit | 7a01d0e97159cf9afaaae8b1c1a8182a817dcfcc (patch) | |
tree | c06b1b42de0e63d33ba95ea7dc51555f39ddfd36 | |
parent | a7ce741ff0ab02510833854bfa6a1c8c265faee3 (diff) |
Add explicit -march=x86 to these tests so that they don't
default to -march=x86-64 on 64-bit hosts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63579 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/bt.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/bt.ll b/test/CodeGen/X86/bt.ll index f91130dd69..a76242c977 100644 --- a/test/CodeGen/X86/bt.ll +++ b/test/CodeGen/X86/bt.ll @@ -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 |