commit | 339b0a093c8083a3b53c686637e984dd916e87de | [log] [tgz] |
---|---|---|
author | ahaas <ahaas@chromium.org> | Tue Nov 22 16:44:25 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Nov 22 16:44:42 2016 |
tree | 7222b35936e0549311acab7dea8c68587d9a6452 | |
parent | 0f87349505a968e438736eb7d6cdcf0ea62d3d0b [diff] |
[wasm] Do not create special wrappers for i64 imports on 32-bit platforms Wrapper creation for import functions with i64 return values on 32-bit platforms crashed because the number of return values of the wrapper did not match the number of input nodes of the return node. The issue is fixed by not creating special wrappers for 32-bit platforms in the first place. This is valid because wrappers with i64 return values are never actually executed. R=titzer@chromium.org BUG=v8:5661 Review-Url: https://codereview.chromium.org/2517173003 Cr-Commit-Position: refs/heads/master@{#41190}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://github.com/v8/v8/wiki
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8
and fetch all of its dependencies. To stay up to date, run
git pull origin gclient sync
For fetching all branches, add the following into your remote configuration in .git/config
:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* fetch = +refs/tags/*:refs/tags/*
Please follow the instructions mentioned on the V8 wiki.