mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
Remove bogus debug statement. Sheesh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189638 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -584,14 +584,12 @@ bool PPCFastISel::PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr) {
|
|||||||
.addImm(Addr.Offset).addFrameIndex(Addr.Base.FI).addMemOperand(MMO);
|
.addImm(Addr.Offset).addFrameIndex(Addr.Base.FI).addMemOperand(MMO);
|
||||||
|
|
||||||
// Base reg with offset in range.
|
// Base reg with offset in range.
|
||||||
} else if (UseOffset) {
|
} else if (UseOffset)
|
||||||
if (Addr.Offset == 0 && Opc == PPC::STW8)
|
|
||||||
dbgs() << "Possible problem here.\n";
|
|
||||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc))
|
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc))
|
||||||
.addReg(SrcReg).addImm(Addr.Offset).addReg(Addr.Base.Reg);
|
.addReg(SrcReg).addImm(Addr.Offset).addReg(Addr.Base.Reg);
|
||||||
|
|
||||||
// Indexed form.
|
// Indexed form.
|
||||||
} else {
|
else {
|
||||||
// Get the RR opcode corresponding to the RI one. FIXME: It would be
|
// Get the RR opcode corresponding to the RI one. FIXME: It would be
|
||||||
// preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it
|
// preferable to use the ImmToIdxMap from PPCRegisterInfo.cpp, but it
|
||||||
// is hard to get at.
|
// is hard to get at.
|
||||||
|
Reference in New Issue
Block a user