comparison src/cpu/zero/vm/assembler_zero.cpp @ 7430:d02120b7a34f

8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32 Reviewed-by: jrose, kvn, twisti Contributed-by: Morris Meyer <morris.meyer@oracle.com>
author twisti
date Thu, 20 Dec 2012 18:53:44 -0800
parents 18d56ca3e901
children db9981fd3124
comparison
equal deleted inserted replaced
7429:a46457045d66 7430:d02120b7a34f
56 ShouldNotCallThis(); 56 ShouldNotCallThis();
57 } 57 }
58 58
59 void MacroAssembler::align(int modulus) { 59 void MacroAssembler::align(int modulus) {
60 while (offset() % modulus != 0) 60 while (offset() % modulus != 0)
61 emit_byte(AbstractAssembler::code_fill_byte()); 61 emit_int8(AbstractAssembler::code_fill_byte());
62 } 62 }
63 63
64 void MacroAssembler::bang_stack_with_offset(int offset) { 64 void MacroAssembler::bang_stack_with_offset(int offset) {
65 ShouldNotCallThis(); 65 ShouldNotCallThis();
66 } 66 }