Remove bogus debug statement. Sheesh.
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>
Fri, 30 Aug 2013 03:07:11 +0000 (03:07 +0000)
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>
Fri, 30 Aug 2013 03:07:11 +0000 (03:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189638 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCFastISel.cpp

index a308adebb51479e8739a643d2db1164c7acaf334..14a4b31710b4da189fca9d35c86509803076b637 100644 (file)
@@ -584,14 +584,12 @@ bool PPCFastISel::PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr) {
       .addImm(Addr.Offset).addFrameIndex(Addr.Base.FI).addMemOperand(MMO);
 
   // Base reg with offset in range.
-  } else if (UseOffset) {
-    if (Addr.Offset == 0 && Opc == PPC::STW8)
-      dbgs() << "Possible problem here.\n";
+  } else if (UseOffset)
     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc))
       .addReg(SrcReg).addImm(Addr.Offset).addReg(Addr.Base.Reg);
 
   // Indexed form.
-  else {
+  else {
     // Get the RR opcode corresponding to the RI one.  FIXME: It would be
     // preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it
     // is hard to get at.