summaryrefslogtreecommitdiff
path: root/deps/v8/src/ic
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-02-25 12:18:50 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2015-02-25 19:34:28 +0100
commita558cd0a619a74dd69e212c79a909b8654942db2 (patch)
tree2a9442261aaaa449cc8b78e3272a6057e759438c /deps/v8/src/ic
parent54532a9761f616dac1ff36d602bd5ae8c1dce7f6 (diff)
downloadandroid-node-v8-a558cd0a619a74dd69e212c79a909b8654942db2.tar.gz
android-node-v8-a558cd0a619a74dd69e212c79a909b8654942db2.tar.bz2
android-node-v8-a558cd0a619a74dd69e212c79a909b8654942db2.zip
deps: revert v8 abi change
Undo the ABI (but not API) change to NamedPropertyHandlerConfiguration. This avoids a NODE_MODULE_VERSION bump and forcing everyone to recompile their add-ons, at the cost of increasing the delta with upstream V8. This commit effectively backs out 4.1.0.16, the release that introduced the ABI change (and nothing else.) PR-URL: https://github.com/iojs/io.js/pull/952 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Rod Vagg <rod@vagg.org>
Diffstat (limited to 'deps/v8/src/ic')
-rw-r--r--deps/v8/src/ic/ic.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/ic/ic.cc b/deps/v8/src/ic/ic.cc
index 0707536b84..48cef68f5a 100644
--- a/deps/v8/src/ic/ic.cc
+++ b/deps/v8/src/ic/ic.cc
@@ -2924,7 +2924,7 @@ RUNTIME_FUNCTION(LoadElementWithInterceptor) {
Handle<Object> result;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, result,
- JSObject::GetElementWithInterceptor(receiver, receiver, index, true));
+ JSObject::GetElementWithInterceptor(receiver, receiver, index));
return *result;
}