diff src/share/vm/asm/assembler.cpp @ 7430:d02120b7a34f

8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32 Reviewed-by: jrose, kvn, twisti Contributed-by: Morris Meyer <morris.meyer@oracle.com>
author twisti
date Thu, 20 Dec 2012 18:53:44 -0800
parents 18d56ca3e901
children a5de0cc2f91c
line wrap: on
line diff
--- a/src/share/vm/asm/assembler.cpp	Thu Dec 20 14:17:52 2012 -0800
+++ b/src/share/vm/asm/assembler.cpp	Thu Dec 20 18:53:44 2012 -0800
@@ -109,17 +109,6 @@
   ICache::invalidate_range(addr_at(0), offset());
 }
 
-
-void AbstractAssembler::a_byte(int x) {
-  emit_byte(x);
-}
-
-
-void AbstractAssembler::a_long(jint x) {
-  emit_long(x);
-}
-
-
 void AbstractAssembler::bind(Label& L) {
   if (L.is_bound()) {
     // Assembler can bind a label more than once to the same place.