mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
Reviewed-by: jrose, kvn, twisti
This commit is contained in:
parent
fede1f0216
commit
113e9ab39d
9 changed files with 759 additions and 766 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue