diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-10-13 14:27:54 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-10-13 14:27:54 +0000 |
commit | f07d898ae103ca7d5ffd0eadea7d0562d9bc38d4 (patch) | |
tree | 675d0f930ddb178e1065f13526103c1a62547b04 | |
parent | 3815de8d5016746f1d712eb66ea745d4cedc244d (diff) | |
download | bcm5719-llvm-f07d898ae103ca7d5ffd0eadea7d0562d9bc38d4.tar.gz bcm5719-llvm-f07d898ae103ca7d5ffd0eadea7d0562d9bc38d4.zip |
Force CPU type on test so it doesn't accidentally emit movbe instead of bswap on Intel Atom CPUs.
llvm-svn: 141863
-rw-r--r-- | llvm/test/CodeGen/X86/bswap.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/bswap.ll b/llvm/test/CodeGen/X86/bswap.ll index a7540aafa9b..d2d6f9099a1 100644 --- a/llvm/test/CodeGen/X86/bswap.ll +++ b/llvm/test/CodeGen/X86/bswap.ll @@ -1,6 +1,6 @@ ; bswap should be constant folded when it is passed a constant argument -; RUN: llc < %s -march=x86 | FileCheck %s +; RUN: llc < %s -march=x86 -mcpu=i686 | FileCheck %s declare i16 @llvm.bswap.i16(i16) |