6953588: hotspot\src\share\vm\interpreter\bytecodes.cpp doesn't compile with VS2010 on AMD64

Wed, 19 May 2010 10:21:41 -0700

author
prr
date
Wed, 19 May 2010 10:21:41 -0700
changeset 1881
daf617c34be6
parent 1841
9d865fc2f644
child 1882
d38f45079fe9

6953588: hotspot\src\share\vm\interpreter\bytecodes.cpp doesn't compile with VS2010 on AMD64
Reviewed-by: dcubed

src/share/vm/interpreter/bytecodes.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/interpreter/bytecodes.cpp	Wed May 12 17:19:41 2010 -0700
     1.2 +++ b/src/share/vm/interpreter/bytecodes.cpp	Wed May 19 10:21:41 2010 -0700
     1.3 @@ -26,11 +26,13 @@
     1.4  #include "incls/_bytecodes.cpp.incl"
     1.5  
     1.6  
     1.7 +#if defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER < 1600))
     1.8  // Windows AMD64 Compiler Hangs compiling this file
     1.9  // unless optimization is off
    1.10  #ifdef _M_AMD64
    1.11  #pragma optimize ("", off)
    1.12  #endif
    1.13 +#endif
    1.14  
    1.15  
    1.16  bool            Bytecodes::_is_initialized = false;

mercurial