comparison src/cpu/zero/vm/assembler_zero.cpp @ 7415:0c535211ef13

8004668: Build failure for Zero target Summary: fixed build failure for Zero target Reviewed-by: twisti, kvn
author bharadwaj
date Fri, 07 Dec 2012 18:13:23 -0800
parents f0c2369fda5a
children 18d56ca3e901
comparison
equal deleted inserted replaced
7396:4a2ed49abd51 7415:0c535211ef13
70 void MacroAssembler::bang_stack_with_offset(int offset) { 70 void MacroAssembler::bang_stack_with_offset(int offset) {
71 ShouldNotCallThis(); 71 ShouldNotCallThis();
72 } 72 }
73 73
74 void MacroAssembler::advance(int bytes) { 74 void MacroAssembler::advance(int bytes) {
75 _code_pos += bytes; 75 code_section()->set_end(code_section()->end() + bytes);
76 sync();
77 } 76 }
78 77
79 RegisterOrConstant MacroAssembler::delayed_value_impl( 78 RegisterOrConstant MacroAssembler::delayed_value_impl(
80 intptr_t* delayed_value_addr, Register tmpl, int offset) { 79 intptr_t* delayed_value_addr, Register tmpl, int offset) {
81 ShouldNotCallThis(); 80 ShouldNotCallThis();