From 3b32c8aae552de5cebeae4d4d7e17d5af1381712 Mon Sep 17 00:00:00 2001 From: Mikael Vidstedt Date: Thu, 17 Jan 2019 13:46:12 -0800 Subject: [PATCH] 8217266: Remove dead LIR_List::compare_to and LIR_Code::lir_compare_to Reviewed-by: roland, kvn --- src/hotspot/share/c1/c1_LIR.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/hotspot/share/c1/c1_LIR.hpp b/src/hotspot/share/c1/c1_LIR.hpp index 9b0e31a37da..392bb0df50f 100644 --- a/src/hotspot/share/c1/c1_LIR.hpp +++ b/src/hotspot/share/c1/c1_LIR.hpp @@ -949,7 +949,6 @@ enum LIR_Code { , lir_ushr , lir_alloc_array , lir_throw - , lir_compare_to , lir_xadd , lir_xchg , end_op2 @@ -2129,10 +2128,6 @@ class LIR_List: public CompilationResourceObj { 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)); }