| Index: src/ic/ic.h
|
| diff --git a/src/ic/ic.h b/src/ic/ic.h
|
| index 199b1f60c8a8871dd4161d3b6e4c84e2dc03403c..33b4e6e1af654f998e2104d115f1e94da9cf62e5 100644
|
| --- a/src/ic/ic.h
|
| +++ b/src/ic/ic.h
|
| @@ -653,7 +653,7 @@ class BinaryOpIC : public IC {
|
| explicit BinaryOpIC(Isolate* isolate) : IC(EXTRA_CALL_FRAME, isolate) {}
|
|
|
| static Builtins::JavaScript TokenToJSBuiltin(Token::Value op,
|
| - LanguageMode language_mode);
|
| + Strength strength);
|
|
|
| MaybeHandle<Object> Transition(Handle<AllocationSite> allocation_site,
|
| Handle<Object> left,
|
| @@ -674,7 +674,7 @@ class CompareIC : public IC {
|
|
|
| // Factory method for getting an uninitialized compare stub.
|
| static Handle<Code> GetUninitialized(Isolate* isolate, Token::Value op,
|
| - bool strong);
|
| + Strength strength);
|
|
|
| private:
|
| static bool HasInlinedSmiCode(Address address);
|
| @@ -683,7 +683,7 @@ class CompareIC : public IC {
|
| Condition GetCondition() const { return ComputeCondition(op_); }
|
|
|
| static Code* GetRawUninitialized(Isolate* isolate, Token::Value op,
|
| - bool strong);
|
| + Strength strength);
|
|
|
| static void Clear(Isolate* isolate, Address address, Code* target,
|
| ConstantPoolArray* constant_pool);
|
|
|