remove over-general code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33157 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-01-12 23:28:32 +00:00
parent fb93931939
commit 286bf46a23

View File

@ -179,11 +179,11 @@ bool X86TargetAsmInfo::LowerToBSwap(CallInst *CI) const {
const char *IntName;
if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
unsigned BitWidth = ITy->getBitWidth();
if (BitWidth > 8 && BitWidth <= 16)
if (BitWidth == 16)
IntName = "llvm.bswap.i16";
else if (BitWidth > 24 && BitWidth <= 32)
else if (BitWidth == 32)
IntName = "llvm.bswap.i32";
else if (BitWidth > 56 && BitWidth <= 64)
else if (BitWidth == 64)
IntName = "llvm.bswap.i64";
else
return false;