From 38debecfd7c9a3e8c8d8818adf4fa67fec263f9d Mon Sep 17 00:00:00 2001 From: Greg Lewis Date: Sun, 7 Feb 2021 05:19:58 +0000 Subject: Update to 13.0.7.1 --- .../files/patch-src_hotspot_share_opto_addnode.cpp | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 java/openjdk13/files/patch-src_hotspot_share_opto_addnode.cpp (limited to 'java/openjdk13/files') diff --git a/java/openjdk13/files/patch-src_hotspot_share_opto_addnode.cpp b/java/openjdk13/files/patch-src_hotspot_share_opto_addnode.cpp deleted file mode 100644 index 4f304ce6b1ae..000000000000 --- a/java/openjdk13/files/patch-src_hotspot_share_opto_addnode.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- src/hotspot/share/opto/addnode.cpp -+++ src/hotspot/share/opto/addnode.cpp -@@ -917,7 +917,7 @@ Node *MinINode::Ideal(PhaseGVN *phase, bool can_reshape) { - - // Transform MIN2(x + c0, MIN2(x + c1, z)) into MIN2(x + MIN2(c0, c1), z) - // if x == y and the additions can't overflow. -- if (phase->eqv(x,y) && -+ if (phase->eqv(x,y) && tx != NULL && - !can_overflow(tx, x_off) && - !can_overflow(tx, y_off)) { - return new MinINode(phase->transform(new AddINode(x, phase->intcon(MIN2(x_off, y_off)))), r->in(2)); -@@ -925,7 +925,7 @@ Node *MinINode::Ideal(PhaseGVN *phase, bool can_reshape) { - } else { - // Transform MIN2(x + c0, y + c1) into x + MIN2(c0, c1) - // if x == y and the additions can't overflow. -- if (phase->eqv(x,y) && -+ if (phase->eqv(x,y) && tx != NULL && - !can_overflow(tx, x_off) && - !can_overflow(tx, y_off)) { - return new AddINode(x,phase->intcon(MIN2(x_off,y_off))); -- cgit v1.2.3