< prev index next >

src/hotspot/cpu/x86/assembler_x86.hpp

Print this page
rev 50900 : [mq]: cleanup-asm.patch

@@ -1264,11 +1264,10 @@
   // Conditional jump to a 8-bit offset to L.
   // WARNING: be very careful using this for forward jumps.  If the label is
   // not bound within an 8-bit offset of this instruction, a run-time error
   // will occur.
   void jccb(Condition cc, Label& L);
-  void jccb_if_possible(Condition cc, Label& L);
 
   void jmp(Address entry);    // pc <- entry
 
   // Label operations & relative jumps (PPUM Appendix D)
   void jmp(Label& L, bool maybe_short = true);   // unconditional jump to L

@@ -1278,11 +1277,10 @@
   // Unconditional 8-bit offset jump to L.
   // WARNING: be very careful using this for forward jumps.  If the label is
   // not bound within an 8-bit offset of this instruction, a run-time error
   // will occur.
   void jmpb(Label& L);
-  void jmpb_if_possible(Label& L);
 
   void ldmxcsr( Address src );
 
   void leal(Register dst, Address src);
 
< prev index next >