Commit 78e93935 by Jeff Law Committed by Jeff Law

* fold-const.c (fold_binary_loc): Remove recently added assert.

From-SVN: r263936
parent d0794d14
2018-08-28 Jeff Law <law@redhat.com>
* fold-const.c (fold_binary_loc): Remove recently added assert.
2018-08-28 Joern Rennecke <joern.rennecke@riscy-ip.com>
* genpreds.c (write_predicate_subfunction): Also add ATTRIBUTE_UNUSED
......@@ -78,8 +82,8 @@
* tree.h: Update documentation of fndecl_built_in_p
functions.
2018-08-27 Jeff Law <law@redhat.com>
2018-08-27 Jeff Law <law@redhat.com>
PR tree-optimization/87110
* tree-ssa-dse.c (compute_trims): Handle non-constant
TYPE_SIZE_UNIT.
......
......@@ -9326,14 +9326,6 @@ fold_binary_loc (location_t loc, enum tree_code code, tree type,
if (kind == tcc_comparison || code == MIN_EXPR || code == MAX_EXPR)
{
if (code == MIN_EXPR || code == MAX_EXPR)
{
tree typ0 = TREE_TYPE (arg0);
tree typ1 = TREE_TYPE (arg1);
gcc_assert (TYPE_SIGN (typ0) == TYPE_SIGN (typ1)
&& TYPE_MODE (typ0) == TYPE_MODE (typ1));
}
STRIP_SIGN_NOPS (arg0);
STRIP_SIGN_NOPS (arg1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment