Index: src/runtime/runtime-utils.h |
diff --git a/src/runtime/runtime-utils.h b/src/runtime/runtime-utils.h |
index cf5d462f99ae9d9ddb6aeb76975d36739951cedb..5cdf0430817a9769e018b3062b2fc1d50a8736e7 100644 |
--- a/src/runtime/runtime-utils.h |
+++ b/src/runtime/runtime-utils.h |
@@ -52,7 +52,7 @@ namespace internal { |
// and return. |
#define CONVERT_BOOLEAN_ARG_CHECKED(name, index) \ |
RUNTIME_ASSERT(args[index]->IsBoolean()); \ |
- bool name = args[index]->IsTrue(); |
+ bool name = args[index]->IsTrue(isolate); |
// Cast the given argument to a Smi and store its value in an int variable |
// with the given name. If the argument is not a Smi call IllegalOperation |