hotspot/src/share/vm/opto/library_call.cpp
changeset 40010 e32d5e545789
parent 39718 d2e74700faf9
child 40093 f94d179a730b
--- a/hotspot/src/share/vm/opto/library_call.cpp	Mon Jul 25 18:52:59 2016 +0000
+++ b/hotspot/src/share/vm/opto/library_call.cpp	Wed Jul 13 12:23:05 2016 +0200
@@ -3304,7 +3304,7 @@
   // drop through to next case
   set_control( _gvn.transform(new IfTrueNode(iff_bit)));
 
-#ifndef TARGET_OS_FAMILY_windows
+#ifndef _WINDOWS
   // (c) Or, if interrupt bit is set and clear_int is false, use 2nd fast path.
   Node* clr_arg = argument(1);
   Node* cmp_arg = _gvn.transform(new CmpINode(clr_arg, intcon(0)));
@@ -3321,7 +3321,7 @@
 #else
   // To return true on Windows you must read the _interrupted field
   // and check the event state i.e. take the slow path.
-#endif // TARGET_OS_FAMILY_windows
+#endif // _WINDOWS
 
   // (d) Otherwise, go to the slow path.
   slow_region->add_req(control());