src/cpu/sparc/vm/macroAssembler_sparc.cpp

Print this page
rev 4739 : Remove breakpoint_Relocation.

@@ -1249,16 +1249,10 @@
 
 void MacroAssembler::align(int modulus) {
   while (offset() % modulus != 0) nop();
 }
 
-
-void MacroAssembler::safepoint() {
-  relocate(breakpoint_Relocation::spec(breakpoint_Relocation::safepoint));
-}
-
-
 void RegistersForDebugging::print(outputStream* s) {
   FlagSetting fs(Debugging, true);
   int j;
   for (j = 0; j < 8; ++j) {
     if (j != 6) { s->print("i%d = ", j); os::print_location(s, i[j]); }