Index: src/third_party/fdlibm/fdlibm.js |
diff --git a/src/third_party/fdlibm/fdlibm.js b/src/third_party/fdlibm/fdlibm.js |
deleted file mode 100644 |
index ffb67de7f1b63ee5f7ef4dc160a061c2cedd1a50..0000000000000000000000000000000000000000 |
--- a/src/third_party/fdlibm/fdlibm.js |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-// The following is adapted from fdlibm (http://www.netlib.org/fdlibm), |
-// |
-// ==================================================== |
-// Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved. |
-// |
-// Developed at SunSoft, a Sun Microsystems, Inc. business. |
-// Permission to use, copy, modify, and distribute this |
-// software is freely granted, provided that this notice |
-// is preserved. |
-// ==================================================== |
-// |
-// The original source code covered by the above license above has been |
-// modified significantly by Google Inc. |
-// Copyright 2014 the V8 project authors. All rights reserved. |
-// |
-// The following is a straightforward translation of fdlibm routines |
-// by Raymond Toy (rtoy@google.com). |
- |
-(function(global, utils) { |
- |
-"use strict"; |
- |
-%CheckIsBootstrapping(); |
- |
-// ------------------------------------------------------------------- |
-// Imports |
- |
-var GlobalMath = global.Math; |
- |
-utils.Import(function(from) {}); |
- |
-//------------------------------------------------------------------- |
- |
-utils.InstallFunctions(GlobalMath, DONT_ENUM, []); |
- |
-}) |