hotspot/src/share/vm/oops/methodOop.hpp
changeset 8313 06ce193c8a5f
parent 8296 b1c2163e4e59
parent 8303 81a0b8663748
child 8667 b32929355d27
child 8653 8797d788a4f1
--- a/hotspot/src/share/vm/oops/methodOop.hpp	Wed Feb 16 17:26:20 2011 -0800
+++ b/hotspot/src/share/vm/oops/methodOop.hpp	Mon Feb 21 04:49:17 2011 -0800
@@ -729,8 +729,8 @@
 // Disabling optimization doesn't work for methods in header files
 // so we force it to call through the non-optimized version in the .cpp.
 // It's gross, but it's the only way we can ensure that all callers are
-// fixed.  MSC_VER is defined in build/windows/makefiles/compile.make.
-#if defined(_M_AMD64) && MSC_VER >= 1400
+// fixed.  _MSC_VER is defined by the windows compiler
+#if defined(_M_AMD64) && _MSC_VER >= 1400
   void write_pair(int bci, int line);
 #else
   void write_pair(int bci, int line) { write_pair_inline(bci, line); }