add another missing store.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-03-07 16:26:48 +00:00
parent ab5801cb28
commit b84225b080

View File

@ -95,6 +95,7 @@ PPCHazardRecognizer970::GetInstrType(unsigned Opcode) {
case PPC::LHZ:
case PPC::LWZU:
return LSU_LD;
case PPC::STFS:
case PPC::STFD:
case PPC::STW:
case PPC::STB:
@ -230,6 +231,7 @@ void PPCHazardRecognizer970::EmitInstruction(SDNode *Node) {
default: assert(0 && "Unknown store instruction!");
case PPC::STB: StoreSize = 1; break;
case PPC::STH: StoreSize = 2; break;
case PPC::STFS:
case PPC::STWU:
case PPC::STW: StoreSize = 4; break;
case PPC::STFD: StoreSize = 8; break;