| Index: src/ic.cc
|
| diff --git a/src/ic.cc b/src/ic.cc
|
| index 5212004fa5a0532e35931aa20cf9e366d4f2e05d..bf2a649f7f298d1e53fb53b035b5dcfb323a7ee7 100644
|
| --- a/src/ic.cc
|
| +++ b/src/ic.cc
|
| @@ -2568,7 +2568,7 @@ RUNTIME_FUNCTION(MaybeObject*, BinaryOp_Patch) {
|
| Code* CompareIC::GetRawUninitialized(Token::Value op) {
|
| ICCompareStub stub(op, UNINITIALIZED, UNINITIALIZED, UNINITIALIZED);
|
| Code* code = NULL;
|
| - CHECK(stub.FindCodeInCache(&code));
|
| + CHECK(stub.FindCodeInCache(&code, Isolate::Current()));
|
| return code;
|
| }
|
|
|
|
|