8004537: replace AbstractAssembler emit_long with emit_int32

Reviewed-by: jrose, kvn, twisti
This commit is contained in:
Morris Meyer 2013-01-07 14:08:28 -08:00 committed by Christian Thalinger
parent 7b9133b99c
commit b3fe91a803
8 changed files with 255 additions and 257 deletions

View file

@ -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: