diff src/cpu/x86/vm/assembler_x86.cpp @ 13515:fa5180b3c18e

renamed pollingPageDistance enum to pollingForm
author Doug Simon <doug.simon@oracle.com>
date Mon, 06 Jan 2014 20:43:31 +0100
parents 8085ce95b6f5
children d49f00604347
line wrap: on
line diff
--- a/src/cpu/x86/vm/assembler_x86.cpp	Mon Jan 06 17:12:09 2014 +0000
+++ b/src/cpu/x86/vm/assembler_x86.cpp	Mon Jan 06 20:43:31 2014 +0100
@@ -81,10 +81,10 @@
     _rspec = runtime_call_Relocation::spec();
     break;
   case relocInfo::poll_type:
-    _rspec = poll_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::far : poll_Relocation::near);
+    _rspec = poll_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::absolute : poll_Relocation::pc_relative);
     break;
   case relocInfo::poll_return_type:
-    _rspec = poll_return_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::far : poll_Relocation::near);
+    _rspec = poll_return_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::absolute : poll_Relocation::pc_relative);
     break;
   case relocInfo::none:
     break;