[llvm] r189638 - Remove bogus debug statement. Sheesh.

Bill Schmidt wschmidt at linux.vnet.ibm.com
Thu Aug 29 20:07:11 PDT 2013


Author: wschmidt
Date: Thu Aug 29 22:07:11 2013
New Revision: 189638

URL: http://llvm.org/viewvc/llvm-project?rev=189638&view=rev
Log:
Remove bogus debug statement.  Sheesh.

Modified:
    llvm/trunk/lib/Target/PowerPC/PPCFastISel.cpp

Modified: llvm/trunk/lib/Target/PowerPC/PPCFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCFastISel.cpp?rev=189638&r1=189637&r2=189638&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCFastISel.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCFastISel.cpp Thu Aug 29 22:07:11 2013
@@ -584,14 +584,12 @@ bool PPCFastISel::PPCEmitStore(MVT VT, u
       .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.





More information about the llvm-commits mailing list