Index: src/ic.cc |
diff --git a/src/ic.cc b/src/ic.cc |
index 50b1cde888d769b675d6eee89d5a27819d77c1c0..4bf419c40712afd0f6cf545a5554b377d575230f 100644 |
--- a/src/ic.cc |
+++ b/src/ic.cc |
@@ -2402,7 +2402,7 @@ RUNTIME_FUNCTION(MaybeObject*, BinaryOp_Patch) { |
Handle<JSFunction> builtin_function(JSFunction::cast(builtin), isolate); |
bool caught_exception; |
- Object** builtin_args[] = { right.location() }; |
+ Handle<Object> builtin_args[] = { right }; |
rossberg
2011/10/05 13:10:17
Nit: I think you used argv everywhere else.
|
Handle<Object> result = Execution::Call(builtin_function, |
left, |
ARRAY_SIZE(builtin_args), |