Commit cebe850d by Richard Sandiford Committed by Richard Sandiford

genrecog.c (simplify_tests): Check that CONST_INT and XWINT tests are for the same position.

gcc/
	* genrecog.c (simplify_tests): Check that CONST_INT and XWINT tests
	are for the same position.

From-SVN: r222618
parent e1c444fe
2015-04-30 Richard Sandiford <richard.sandiford@arm.com>
* genrecog.c (simplify_tests): Check that CONST_INT and XWINT tests
are for the same position.
2015-04-29 Aditya Kumar <hiraditya@hotmail.com>
* tree-vectorizer.c (set_uid_loop_bbs): New. Factored out of
......
......@@ -1597,7 +1597,8 @@ simplify_tests (state *s)
&& d->if_statement_p (&label)
&& label == CONST_INT)
if (decision *second = d->first->to->singleton ())
if (second->test.kind == test::WIDE_INT_FIELD
if (d->test.pos == second->test.pos
&& second->test.kind == test::WIDE_INT_FIELD
&& second->test.u.opno == 0
&& second->if_statement_p (&label)
&& IN_RANGE (int64_t (label),
......
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