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

Side by Side Diff: base/third_party/dmg_fp/vs2013-optimization.patch

Issue 385503002: Fixes for re-enabling more MSVC level 4 warnings: base/third_party/dmg_fp/ edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « base/third_party/dmg_fp/msvc_warnings.patch ('k') | base/third_party/dmg_fp/win_vs2012.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: base/third_party/dmg_fp/dtoa.cc
2 diff --git a/base/third_party/dmg_fp/dtoa.cc b/base/third_party/dmg_fp/dtoa.cc
3 index 4eb9f0efd94221b3ab95f84554bbc92f112bf973..b03ccff569f9403eb67a95737b0e1974 0e56ef33 100644
4 --- a/base/third_party/dmg_fp/dtoa.cc
5 +++ b/base/third_party/dmg_fp/dtoa.cc
6 @@ -179,6 +179,12 @@
7 * used for input more than STRTOD_DIGLIM digits long (default 40).
8 */
9
10 +#if defined _MSC_VER && _MSC_VER == 1800
11 +// TODO(scottmg): VS2013 RC ICEs on a bunch of functions in this file.
12 +// This should be removed after RTM. See http://crbug.com/288948.
13 +#pragma optimize("", off)
14 +#endif
15 +
16 #define IEEE_8087
17 #define NO_HEX_FP
18
OLDNEW
« no previous file with comments | « base/third_party/dmg_fp/msvc_warnings.patch ('k') | base/third_party/dmg_fp/win_vs2012.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698