diff options
author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2013-08-30 03:07:11 +0000 |
---|---|---|
committer | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2013-08-30 03:07:11 +0000 |
commit | 40433e5df94f05ba93df7e96f7eb3f861915152a (patch) | |
tree | 83492e2f1fc1be00e274cc62cc4dd30874ba94f9 /lib/Target/PowerPC | |
parent | 118eb5894e448dfddc0152f8f28284315b6f955e (diff) | |
download | external_llvm-40433e5df94f05ba93df7e96f7eb3f861915152a.zip external_llvm-40433e5df94f05ba93df7e96f7eb3f861915152a.tar.gz external_llvm-40433e5df94f05ba93df7e96f7eb3f861915152a.tar.bz2 |
Remove bogus debug statement. Sheesh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189638 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r-- | lib/Target/PowerPC/PPCFastISel.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PPCFastISel.cpp b/lib/Target/PowerPC/PPCFastISel.cpp index a308ade..14a4b31 100644 --- a/lib/Target/PowerPC/PPCFastISel.cpp +++ b/lib/Target/PowerPC/PPCFastISel.cpp @@ -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. |