| Index: Source/wtf/dtoa.cpp
|
| diff --git a/Source/wtf/dtoa.cpp b/Source/wtf/dtoa.cpp
|
| index d2c1873799ab4d2cb72dc0714a9b9661357eb80e..41d1ae5f71afd149b6df0f7794c01abe109e0dac 100644
|
| --- a/Source/wtf/dtoa.cpp
|
| +++ b/Source/wtf/dtoa.cpp
|
| @@ -44,6 +44,13 @@
|
| #pragma warning(disable: 4244)
|
| #pragma warning(disable: 4245)
|
| #pragma warning(disable: 4554)
|
| +
|
| +#if _MSC_VER == 1800
|
| +// TODO(scottmg): VS2013 currently ICEs on a bunch of functions in this file.
|
| +// Upstream bug fixed in next release. See http://crbug.com/288498.
|
| +#pragma optimize("", off)
|
| +#endif
|
| +
|
| #endif
|
|
|
| namespace WTF {
|
|
|