diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-02 20:16:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-02 20:16:12 +0000 |
commit | c327d71e06a36c44903140a04ef580370669ec70 (patch) | |
tree | dae8b5ad85ad83444e998f56c278f6d68aaae7f2 /llvm/lib/Target/PowerPC/PPCInstrInfo.h | |
parent | bb53acd03cd54dd83027de5e7c8fcedd93ebb14f (diff) | |
download | bcm5719-llvm-c327d71e06a36c44903140a04ef580370669ec70.tar.gz bcm5719-llvm-c327d71e06a36c44903140a04ef580370669ec70.zip |
implement isStoreToStackSlot for PPC
llvm-svn: 25914
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCInstrInfo.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCInstrInfo.h b/llvm/lib/Target/PowerPC/PPCInstrInfo.h index d0be2d6ba3e..f046e5dfb02 100644 --- a/llvm/lib/Target/PowerPC/PPCInstrInfo.h +++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.h @@ -40,6 +40,7 @@ public: unsigned& destReg) const; unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const; + unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const; // commuteInstruction - We can commute rlwimi instructions, but only if the // rotate amt is zero. We also have to munge the immediates a bit. |