hotspot/src/share/vm/asm/assembler.cpp
changeset 14837 a75c3082d106
parent 14827 8aa0a51a7137
child 16368 713209c45a82
--- a/hotspot/src/share/vm/asm/assembler.cpp	Thu Dec 20 14:17:52 2012 -0800
+++ b/hotspot/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.