summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/nss/patches/nspr-disable-optimization-2013.patch
blob: fc0cef8f20a09c3c004282ff81d64dedde3d14f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Index: nspr/pr/src/misc/prdtoa.c
===================================================================
--- nspr/pr/src/misc/prdtoa.c	(revision 228201)
+++ nspr/pr/src/misc/prdtoa.c	(working copy)
@@ -13,6 +13,12 @@
 #pragma GCC diagnostic ignored "-Wparentheses"
 #endif
 
+#if _MSC_VER == 1800
+// TODO(scottmg): Crashes VS2013 RC. Upstream bug filed and should be fixed
+// in the next release. http://crbug.com/288948.
+#pragma optimize("", off)
+#endif
+
 #include "primpl.h"
 #include "prbit.h"