From 4c6899741d8814424072fd11282a5459771dc562 Mon Sep 17 00:00:00 2001 From: Martin Jambor Date: Thu, 27 Jun 2019 13:26:52 +0200 Subject: [PATCH] [PR 90939] Remove outdated assert in ipcp_bits_lattice::meet_with 2019-06-27 Martin Jambor PR ipa/90939 * ipa-cp.c (ipcp_bits_lattice::meet_with): Remove assert. From-SVN: r272747 --- gcc/ChangeLog | 8 ++++++++ gcc/ipa-cp.c | 1 - 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32834030cfc8..853191aa7cce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2019-06-27 Martin Jambor + + Backport from mainline + 2019-06-25 Martin Jambor + + PR ipa/90939 + * ipa-cp.c (ipcp_bits_lattice::meet_with): Remove assert. + 2019-06-16 John David Anglin PR middle-end/64242 diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 56a95754c7f2..42bc256169cf 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -1072,7 +1072,6 @@ ipcp_bits_lattice::meet_with (ipcp_bits_lattice& other, unsigned precision, if (TREE_CODE_CLASS (code) == tcc_binary) { tree type = TREE_TYPE (operand); - gcc_assert (INTEGRAL_TYPE_P (type)); widest_int o_value, o_mask; get_value_and_mask (operand, &o_value, &o_mask); -- 2.47.2