SystemZ: Fold variable into assertion.
authorBenjamin Kramer <benny.kra@googlemail.com>
Tue, 2 Jul 2013 21:17:31 +0000 (21:17 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Tue, 2 Jul 2013 21:17:31 +0000 (21:17 +0000)
llvm-svn: 185475

llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp

index af3b711..4f919e9 100644 (file)
@@ -351,8 +351,8 @@ SystemZInstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
 
   unsigned OpNum = Ops[0];
   unsigned Reg = MI->getOperand(OpNum).getReg();
-  unsigned RegSize = MF.getRegInfo().getRegClass(Reg)->getSize();
-  assert(Size == RegSize && "Invalid size combination");
+  assert(Size == MF.getRegInfo().getRegClass(Reg)->getSize() &&
+         "Invalid size combination");
 
   // Look for cases where the source of a simple store or the destination
   // of a simple load is being spilled.  Try to use MVC instead.