hotspot/src/cpu/x86/vm/assembler_x86.cpp
changeset 11194 ee1235a09fc3
parent 10546 e79347eebbc5
child 11427 bf248009cbbe
child 11253 8d06f82cbd11
--- a/hotspot/src/cpu/x86/vm/assembler_x86.cpp	Thu Nov 17 04:07:30 2011 -0800
+++ b/hotspot/src/cpu/x86/vm/assembler_x86.cpp	Fri Nov 18 10:29:27 2011 -0800
@@ -3535,7 +3535,8 @@
 // addressing.
 bool Assembler::is_polling_page_far() {
   intptr_t addr = (intptr_t)os::get_polling_page();
-  return !is_simm32(addr - (intptr_t)CodeCache::low_bound()) ||
+  return ForceUnreachable ||
+         !is_simm32(addr - (intptr_t)CodeCache::low_bound()) ||
          !is_simm32(addr - (intptr_t)CodeCache::high_bound());
 }