From: Benjamin Kramer Date: Thu, 13 Oct 2011 14:27:54 +0000 (+0000) Subject: Force CPU type on test so it doesn't accidentally emit movbe instead of bswap on... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d38e99e9490e3d891e1937e64ae837a392681df0;p=oota-llvm.git Force CPU type on test so it doesn't accidentally emit movbe instead of bswap on Intel Atom CPUs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141863 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/bswap.ll b/test/CodeGen/X86/bswap.ll index a7540aafa9b..d2d6f9099a1 100644 --- a/test/CodeGen/X86/bswap.ll +++ b/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)