comparison src/cpu/zero/vm/assembler_zero.cpp @ 7420:18d56ca3e901

8004548: remove unused AbstractAssembler::print(Label&) Reviewed-by: kvn, twisti Contributed-by: Bharadwaj Yadavalli <bharadwaj.yadavalli@oracle.com>
author twisti
date Mon, 17 Dec 2012 11:00:22 -0800
parents 0c535211ef13
children d02120b7a34f
comparison
equal deleted inserted replaced
7419:3c433d080bae 7420:18d56ca3e901
54 54
55 void Assembler::pd_patch_instruction(address branch, address target) { 55 void Assembler::pd_patch_instruction(address branch, address target) {
56 ShouldNotCallThis(); 56 ShouldNotCallThis();
57 } 57 }
58 58
59 #ifndef PRODUCT
60 void Assembler::pd_print_patched_instruction(address branch) {
61 ShouldNotCallThis();
62 }
63 #endif // PRODUCT
64
65 void MacroAssembler::align(int modulus) { 59 void MacroAssembler::align(int modulus) {
66 while (offset() % modulus != 0) 60 while (offset() % modulus != 0)
67 emit_byte(AbstractAssembler::code_fill_byte()); 61 emit_byte(AbstractAssembler::code_fill_byte());
68 } 62 }
69 63