diff src/share/vm/asm/assembler.hpp @ 7476:ffa87474d7a4

8004537: replace AbstractAssembler emit_long with emit_int32 Reviewed-by: jrose, kvn, twisti Contributed-by: Morris Meyer <morris.meyer@oracle.com>
author twisti
date Mon, 07 Jan 2013 14:08:28 -0800
parents d02120b7a34f
children a5de0cc2f91c
line wrap: on
line diff
--- a/src/share/vm/asm/assembler.hpp	Thu Jan 03 16:30:47 2013 -0800
+++ b/src/share/vm/asm/assembler.hpp	Mon Jan 07 14:08:28 2013 -0800
@@ -216,8 +216,6 @@
   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: