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

Side by Side Diff: patches/nspr-disable-optimization-2013.patch

Issue 27011005: Disable optimization in prdtoa.c under VS2013. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 2 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
« README.chromium ('K') | « nspr/pr/src/misc/prdtoa.c ('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 Index: nspr/pr/src/misc/prdtoa.c
2 ===================================================================
3 --- nspr/pr/src/misc/prdtoa.c (revision 228201)
4 +++ nspr/pr/src/misc/prdtoa.c (working copy)
5 @@ -13,6 +13,12 @@
6 #pragma GCC diagnostic ignored "-Wparentheses"
7 #endif
8
9 +#if _MSC_VER == 1800
10 +// TODO(scottmg): Crashes VS2013 RC. Upstream bug filed and should be fixed
11 +// in the next release. http://crbug.com/288948.
12 +#pragma optimize("", off)
13 +#endif
14 +
15 #include "primpl.h"
16 #include "prbit.h"
17
OLDNEW
« README.chromium ('K') | « nspr/pr/src/misc/prdtoa.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698