aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Target/X86/X86TargetAsmInfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp
index 638ced64a0..7371161b96 100644
--- a/lib/Target/X86/X86TargetAsmInfo.cpp
+++ b/lib/Target/X86/X86TargetAsmInfo.cpp
@@ -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;