[AArch64] Remove a redundant check. NFC.
authorHaicheng Wu <haicheng@codeaurora.org>
Wed, 21 Dec 2016 21:40:47 +0000 (21:40 +0000)
committerHaicheng Wu <haicheng@codeaurora.org>
Wed, 21 Dec 2016 21:40:47 +0000 (21:40 +0000)
The case AM.Scale == 0 is already handled by the code right above.

Differential Revision: https://reviews.llvm.org/D28003

llvm-svn: 290275

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

index 4dff402..c8200c2 100644 (file)
@@ -7481,8 +7481,7 @@ bool AArch64TargetLowering::isLegalAddressingMode(const DataLayout &DL,
 
   // Check reg1 + SIZE_IN_BYTES * reg2 and reg1 + reg2
 
-  return !AM.Scale || AM.Scale == 1 ||
-         (AM.Scale > 0 && (uint64_t)AM.Scale == NumBytes);
+  return AM.Scale == 1 || (AM.Scale > 0 && (uint64_t)AM.Scale == NumBytes);
 }
 
 int AArch64TargetLowering::getScalingFactorCost(const DataLayout &DL,