diff --git a/hphp/runtime/vm/bytecode.cpp b/hphp/runtime/vm/bytecode.cpp index d2145a66d..0991ebeda 100644 --- a/hphp/runtime/vm/bytecode.cpp +++ b/hphp/runtime/vm/bytecode.cpp @@ -913,9 +913,6 @@ string Stack::toString(const ActRec* fp, int offset, return os.str(); } -void Stack::clearEvalStack(ActRec *fp, int32_t numLocals) { -} - UnwindStatus Stack::unwindFrag(ActRec* fp, int offset, PC& pc, Fault& fault) { const Func* func = fp->m_func; diff --git a/hphp/runtime/vm/bytecode.h b/hphp/runtime/vm/bytecode.h index 4510b536d..b5e7b9a94 100644 --- a/hphp/runtime/vm/bytecode.h +++ b/hphp/runtime/vm/bytecode.h @@ -509,7 +509,6 @@ public: void toStringElm(std::ostream& os, TypedValue* vv, const ActRec* fp) const; void toStringIter(std::ostream& os, Iter* it, bool itRef) const; - void clearEvalStack(ActRec* fp, int32_t numLocals); void protect(); void unprotect(); void requestInit();