Index: src/ic.h |
=================================================================== |
--- src/ic.h (revision 5966) |
+++ src/ic.h (working copy) |
@@ -582,7 +582,7 @@ |
static const char* GetStateName(State state); |
private: |
- State TargetState(Handle<Object> x, Handle<Object> y); |
+ State TargetState(State state, Handle<Object> x, Handle<Object> y); |
bool strict() const { return op_ == Token::EQ_STRICT; } |
Condition GetCondition() const { return ComputeCondition(op_); } |
@@ -591,6 +591,8 @@ |
Token::Value op_; |
}; |
+// Helper for TRBinaryOpIC and CompareIC. |
+void PatchInlinedSmiCode(Address address); |
} } // namespace v8::internal |