8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32

Reviewed-by: jrose, kvn, twisti
This commit is contained in:
Morris Meyer 2012-12-20 18:53:44 -08:00 committed by Christian Thalinger
parent fede1f0216
commit 113e9ab39d
9 changed files with 759 additions and 766 deletions

View file

@ -58,7 +58,7 @@ void Assembler::pd_patch_instruction(address branch, address target) {
void MacroAssembler::align(int modulus) {
while (offset() % modulus != 0)
emit_byte(AbstractAssembler::code_fill_byte());
emit_int8(AbstractAssembler::code_fill_byte());
}
void MacroAssembler::bang_stack_with_offset(int offset) {