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

Unified Diff: base/third_party/dmg_fp/float_precision_crash.patch

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/third_party/dmg_fp/dtoa_wrapper.cc ('k') | base/third_party/dmg_fp/g_fmt.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/third_party/dmg_fp/float_precision_crash.patch
diff --git a/base/third_party/dmg_fp/float_precision_crash.patch b/base/third_party/dmg_fp/float_precision_crash.patch
deleted file mode 100644
index df64e7e0c157f1a80c059ee37bb87753941a0927..0000000000000000000000000000000000000000
--- a/base/third_party/dmg_fp/float_precision_crash.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/base/third_party/dmg_fp/dtoa.cc b/base/third_party/dmg_fp/dtoa.cc
-index 3f7e794..3312fa4 100644
---- dtoa.cc
-+++ dtoa.cc
-@@ -3891,7 +3891,7 @@ dtoa
- goto no_digits;
- goto one_digit;
- }
-- for(i = 1;; i++, dval(&u) *= 10.) {
-+ for(i = 1; i <= k + 1; i++, dval(&u) *= 10.) {
- L = (Long)(dval(&u) / ds);
- dval(&u) -= L*ds;
- #ifdef Check_FLT_ROUNDS
« no previous file with comments | « base/third_party/dmg_fp/dtoa_wrapper.cc ('k') | base/third_party/dmg_fp/g_fmt.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698