Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(811)

Unified Diff: src/js/prologue.js

Issue 1425333002: Use inline constants instead of typed array for math constants. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/third_party/fdlibm/fdlibm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/prologue.js
diff --git a/src/js/prologue.js b/src/js/prologue.js
index 4b4e36c79e169f79672f8812ac2a4f985f163528..7aaad724c86fc2cc55a337eb2f36e610818a1050 100644
--- a/src/js/prologue.js
+++ b/src/js/prologue.js
@@ -272,12 +272,11 @@ function PostDebug(utils) {
}
-function InitializeBuiltinTypedArrays(
- utils, rng_state, math_constants, rempio2result) {
+function InitializeBuiltinTypedArrays(utils, rng_state, rempio2result) {
var setup_list = typed_array_setup;
for ( ; !IS_UNDEFINED(setup_list); setup_list = setup_list.next) {
- setup_list(rng_state, math_constants, rempio2result);
+ setup_list(rng_state, rempio2result);
}
}
« no previous file with comments | « src/bootstrapper.cc ('k') | src/third_party/fdlibm/fdlibm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698