| Index: src/ia32/code-stubs-ia32.h
|
| diff --git a/src/ia32/code-stubs-ia32.h b/src/ia32/code-stubs-ia32.h
|
| index f66a8c7e45a5e8284df6bb7c20adf808d2ef8a07..4a56d0d1434b3c530c37b4d9b91957ed815a2a62 100644
|
| --- a/src/ia32/code-stubs-ia32.h
|
| +++ b/src/ia32/code-stubs-ia32.h
|
| @@ -250,13 +250,6 @@ class TypeRecordingBinaryOpStub: public CodeStub {
|
| result_type_(result_type),
|
| name_(NULL) { }
|
|
|
| - // Generate code to call the stub with the supplied arguments. This will add
|
| - // code at the call site to prepare arguments either in registers or on the
|
| - // stack together with the actual call.
|
| - void GenerateCall(MacroAssembler* masm, Register left, Register right);
|
| - void GenerateCall(MacroAssembler* masm, Register left, Smi* right);
|
| - void GenerateCall(MacroAssembler* masm, Smi* left, Register right);
|
| -
|
| private:
|
| enum SmiCodeGenerateHeapNumberResults {
|
| ALLOW_HEAPNUMBER_RESULTS,
|
| @@ -321,10 +314,6 @@ class TypeRecordingBinaryOpStub: public CodeStub {
|
| void GenerateTypeTransition(MacroAssembler* masm);
|
| void GenerateTypeTransitionWithSavedArgs(MacroAssembler* masm);
|
|
|
| - bool IsOperationCommutative() {
|
| - return (op_ == Token::ADD) || (op_ == Token::MUL);
|
| - }
|
| -
|
| virtual int GetCodeKind() { return Code::TYPE_RECORDING_BINARY_OP_IC; }
|
|
|
| virtual InlineCacheState GetICState() {
|
|
|