From: Martin Jambor Date: Thu, 27 Jun 2019 11:26:52 +0000 (+0200) Subject: [PR 90939] Remove outdated assert in ipcp_bits_lattice::meet_with X-Git-Tag: releases/gcc-7.5.0~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c6899741d8814424072fd11282a5459771dc562;p=thirdparty%2Fgcc.git [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 --- 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);