Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index b6267c91e73bdb11c4ee010b5e0c864c73f8b392..83b438b1c7b3ed4be420acbd6861461ab03bb0fc 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -130,7 +130,7 @@ void FullCodeGenerator::Generate() { |
handler_table_ = |
isolate()->factory()->NewFixedArray(function()->handler_count(), TENURED); |
profiling_counter_ = isolate()->factory()->NewJSGlobalPropertyCell( |
- Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget))); |
+ Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget), isolate())); |
SetFunctionPosition(function()); |
Comment cmnt(masm_, "[ function compiled by full code generator"); |
@@ -2377,7 +2377,7 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
VariableProxy* proxy = callee->AsVariableProxy(); |
Property* property = callee->AsProperty(); |
- if (proxy != NULL && proxy->var()->is_possibly_eval()) { |
+ if (proxy != NULL && proxy->var()->is_possibly_eval(isolate())) { |
// In a call to eval, we first call %ResolvePossiblyDirectEval to |
// resolve the function we need to call and the receiver of the |
// call. Then we call the resolved function using the given |