Bug 1360211: Remove dead CalleeStackOffset; r=jandem

--HG--
extra : rebase_source : 7c29864e3028510118b7826f0dede5db697a92ca
This commit is contained in:
Benjamin Bouvier 2017-04-26 17:46:14 +02:00
Родитель 1609e49868
Коммит c3dbe8b3b3
2 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -226,12 +226,6 @@ CodeGeneratorShared::ArgToStackOffset(int32_t slot) const
slot;
}
int32_t
CodeGeneratorShared::CalleeStackOffset() const
{
return masm.framePushed() + JitFrameLayout::offsetOfCalleeToken();
}
int32_t
CodeGeneratorShared::SlotToStackOffset(int32_t slot) const
{

Просмотреть файл

@ -213,9 +213,6 @@ class CodeGeneratorShared : public LElementVisitor
// For arguments to the current function.
inline int32_t ArgToStackOffset(int32_t slot) const;
// For the callee of the current function.
inline int32_t CalleeStackOffset() const;
inline int32_t SlotToStackOffset(int32_t slot) const;
inline int32_t StackOffsetToSlot(int32_t offset) const;