diff options
author | Nate Begeman <natebegeman@mac.com> | 2006-02-02 21:07:50 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2006-02-02 21:07:50 +0000 |
commit | 4efb32892694794c38b11160e34383c6f9dc99ef (patch) | |
tree | 5fa0ad86c62fa72ef1959f50467533b4f2c71d66 /llvm/lib/Target/PowerPC/PPCInstrInfo.cpp | |
parent | 5123346708e9e36d617be809e087a5b2ce634a03 (diff) | |
download | bcm5719-llvm-4efb32892694794c38b11160e34383c6f9dc99ef.tar.gz bcm5719-llvm-4efb32892694794c38b11160e34383c6f9dc99ef.zip |
add 64b gpr store to the possible list of isStoreToStackSlot opcodes.
llvm-svn: 25916
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp index 66251c0b232..211a272bffe 100644 --- a/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp +++ b/llvm/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: |