mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
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:
parent
ab5801cb28
commit
b84225b080
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user