From d3f443efdf611694516e1110501ba4ee4d895fdd Mon Sep 17 00:00:00 2001 From: Jordan DeLong Date: Sat, 1 Jun 2013 14:33:32 -0700 Subject: [PATCH] Remove unused member function --- hphp/runtime/vm/bytecode.cpp | 3 --- hphp/runtime/vm/bytecode.h | 1 - 2 files changed, 4 deletions(-) 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();