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

Side by Side Diff: src/third_party/fdlibm/fdlibm.js

Issue 2106413002: Removed fdlibm.js, as it is now an empty shell. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months 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 unified diff | Download patch
« no previous file with comments | « src/third_party/fdlibm/README.v8 ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // The following is adapted from fdlibm (http://www.netlib.org/fdlibm),
2 //
3 // ====================================================
4 // Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved.
5 //
6 // Developed at SunSoft, a Sun Microsystems, Inc. business.
7 // Permission to use, copy, modify, and distribute this
8 // software is freely granted, provided that this notice
9 // is preserved.
10 // ====================================================
11 //
12 // The original source code covered by the above license above has been
13 // modified significantly by Google Inc.
14 // Copyright 2014 the V8 project authors. All rights reserved.
15 //
16 // The following is a straightforward translation of fdlibm routines
17 // by Raymond Toy (rtoy@google.com).
18
19 (function(global, utils) {
20
21 "use strict";
22
23 %CheckIsBootstrapping();
24
25 // -------------------------------------------------------------------
26 // Imports
27
28 var GlobalMath = global.Math;
29
30 utils.Import(function(from) {});
31
32 //-------------------------------------------------------------------
33
34 utils.InstallFunctions(GlobalMath, DONT_ENUM, []);
35
36 })
OLDNEW
« no previous file with comments | « src/third_party/fdlibm/README.v8 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698