Index: src/ic/ic.h |
diff --git a/src/ic/ic.h b/src/ic/ic.h |
index e03a3858a0630e50a4c6037df2fa371ef594c8c0..6fb756f5cad9808b248800d11dc7ba42858666df 100644 |
--- a/src/ic/ic.h |
+++ b/src/ic/ic.h |
@@ -618,8 +618,7 @@ class CompareIC : public IC { |
static Condition ComputeCondition(Token::Value op); |
// Factory method for getting an uninitialized compare stub. |
- static Handle<Code> GetUninitialized(Isolate* isolate, Token::Value op, |
- Strength strength); |
+ static Handle<Code> GetUninitialized(Isolate* isolate, Token::Value op); |
private: |
static bool HasInlinedSmiCode(Address address); |
@@ -627,8 +626,7 @@ class CompareIC : public IC { |
bool strict() const { return op_ == Token::EQ_STRICT; } |
Condition GetCondition() const { return ComputeCondition(op_); } |
- static Code* GetRawUninitialized(Isolate* isolate, Token::Value op, |
- Strength strength); |
+ static Code* GetRawUninitialized(Isolate* isolate, Token::Value op); |
static void Clear(Isolate* isolate, Address address, Code* target, |
Address constant_pool); |