From 3b478b31e297208ef2c9f74750a8a603eb3726fb Mon Sep 17 00:00:00 2001 From: Nate Begeman Date: Thu, 2 Feb 2006 21:07:50 +0000 Subject: [PATCH] add 64b gpr store to the possible list of isStoreToStackSlot opcodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25916 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCInstrInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PPCInstrInfo.cpp b/lib/Target/PowerPC/PPCInstrInfo.cpp index 66251c0b232..211a272bffe 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.cpp +++ b/lib/Target/PowerPC/PPCInstrInfo.cpp @@ -101,7 +101,7 @@ unsigned PPCInstrInfo::isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const { switch (MI->getOpcode()) { default: break; - //case PPC::ST: ? + case PPC::STD: case PPC::STW: case PPC::STFS: case PPC::STFD: