mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 00:54:38 +02:00
8004536: replace AbstractAssembler emit_word with emit_int16
Reviewed-by: jrose, kvn, twisti
This commit is contained in:
parent
8eb3b25c4f
commit
52da261983
2 changed files with 3 additions and 4 deletions
|
@ -226,7 +226,6 @@ class AbstractAssembler : public ResourceObj {
|
|||
void emit_address(address x) { code_section()->emit_address(x); }
|
||||
|
||||
void emit_byte(int x) { emit_int8 (x); } // deprecated
|
||||
void emit_word(int x) { emit_int16(x); } // deprecated
|
||||
void emit_long(jint x) { emit_int32(x); } // deprecated
|
||||
|
||||
// Instruction boundaries (required when emitting relocatable values).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue