< prev index next >

src/hotspot/share/c1/c1_LIR.hpp

Print this page
rev 53366 : [mq]: 8217266

@@ -947,11 +947,10 @@
       , lir_shl
       , lir_shr
       , lir_ushr
       , lir_alloc_array
       , lir_throw
-      , lir_compare_to
       , lir_xadd
       , lir_xchg
   , end_op2
   , begin_op3
       , lir_idiv

@@ -2127,14 +2126,10 @@
   }
   void unwind_exception(LIR_Opr exceptionOop) {
     append(new LIR_Op1(lir_unwind, exceptionOop));
   }
 
-  void compare_to (LIR_Opr left, LIR_Opr right, LIR_Opr dst) {
-    append(new LIR_Op2(lir_compare_to,  left, right, dst));
-  }
-
   void push(LIR_Opr opr)                                   { append(new LIR_Op1(lir_push, opr)); }
   void pop(LIR_Opr reg)                                    { append(new LIR_Op1(lir_pop,  reg)); }
 
   void cmp(LIR_Condition condition, LIR_Opr left, LIR_Opr right, CodeEmitInfo* info = NULL) {
     append(new LIR_Op2(lir_cmp, condition, left, right, info));
< prev index next >