mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
8004537: replace AbstractAssembler emit_long with emit_int32
Reviewed-by: jrose, kvn, twisti
This commit is contained in:
parent
7b9133b99c
commit
b3fe91a803
8 changed files with 255 additions and 257 deletions
|
@ -216,8 +216,6 @@ class AbstractAssembler : public ResourceObj {
|
|||
bool isByte(int x) const { return 0 <= x && x < 0x100; }
|
||||
bool isShiftCount(int x) const { return 0 <= x && x < 32; }
|
||||
|
||||
void emit_long(jint x) { emit_int32(x); } // deprecated
|
||||
|
||||
// Instruction boundaries (required when emitting relocatable values).
|
||||
class InstructionMark: public StackObj {
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue