diff src/cpu/x86/vm/assembler_x86.cpp @ 2212:d9e4d0aefc90

Small clean up to reduce delta to OpenJDK.
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Mon, 21 Feb 2011 19:28:35 +0100
parents 91fe28b03d6a
children 2ab52cda08e5
line wrap: on
line diff
--- a/src/cpu/x86/vm/assembler_x86.cpp	Mon Feb 21 19:17:33 2011 +0100
+++ b/src/cpu/x86/vm/assembler_x86.cpp	Mon Feb 21 19:28:35 2011 +0100
@@ -5544,7 +5544,6 @@
   lea(c_rarg1, InternalAddress(rip));
   movq(c_rarg2, rsp); // pass pointer to regs array
   andq(rsp, -16); // align stack as required by ABI
-  mov64(rax, 0);
   call(RuntimeAddress(CAST_FROM_FN_PTR(address, MacroAssembler::debug64)));
   hlt();
 }
@@ -5555,7 +5554,6 @@
 
   push_CPU_state();   // keeps alignment at 16 bytes
   lea(c_rarg0, ExternalAddress((address) msg));
-  mov64(rax, 0);
   call_VM_leaf(CAST_FROM_FN_PTR(address, warning), c_rarg0);
   pop_CPU_state();
   pop(rsp);