Index: src/compiler/js-graph.cc |
diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc |
index 4079f78cc0b86b877fb946a643b64b38fa77763c..17c37074f5304126a4aa5ef147716e9446c53f3f 100644 |
--- a/src/compiler/js-graph.cc |
+++ b/src/compiler/js-graph.cc |
@@ -115,11 +115,11 @@ Node* JSGraph::Constant(Handle<Object> value) { |
return Constant(value->Number()); |
} else if (value->IsUndefined(isolate())) { |
return UndefinedConstant(); |
- } else if (value->IsTrue()) { |
+ } else if (value->IsTrue(isolate())) { |
return TrueConstant(); |
- } else if (value->IsFalse()) { |
+ } else if (value->IsFalse(isolate())) { |
return FalseConstant(); |
- } else if (value->IsNull()) { |
+ } else if (value->IsNull(isolate())) { |
return NullConstant(); |
} else if (value->IsTheHole(isolate())) { |
return TheHoleConstant(); |