Commit bd170bbc by Richard Guenther Committed by Richard Biener

re PR tree-optimization/38359 (ICE in set_lattice_value, at tree-ssa-ccp.c:466)

2008-12-02  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/38359
	* fold-const.c (fold_binary): Fold -1 >> x to -1 only for
	non-negative x.

	* gcc.c-torture/compile/pr38359.c: New testcase.
	* gcc.c-torture/execute/shiftopt-1.c: Adjust.

From-SVN: r142356
parent d47a0151
2008-12-02 Richard Guenther <rguenther@suse.de>
PR tree-optimization/38359
* fold-const.c (fold_binary): Fold -1 >> x to -1 only for
non-negative x.
2008-12-02 Martin Jambor <mjambor@suse.cz>
PR middle-end/37861
......@@ -11457,7 +11457,8 @@ fold_binary (enum tree_code code, tree type, tree op0, tree op1)
case RSHIFT_EXPR:
/* Optimize -1 >> x for arithmetic right shifts. */
if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type))
if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type)
&& tree_expr_nonnegative_p (arg1))
return omit_one_operand (type, arg0, arg1);
/* ... fall through ... */
......
2008-12-02 Richard Guenther <rguenther@suse.de>
PR tree-optimization/38359
* gcc.c-torture/compile/pr38359.c: New testcase.
* gcc.c-torture/execute/shiftopt-1.c: Adjust.
2008-12-02 Janus Weil <janus@gcc.gnu.org>
PR fortran/36704
......
......@@ -43,12 +43,6 @@ stest (int x)
if (0 >> x != 0)
link_error ();
if (-1 >> x != -1)
link_error ();
if (~0 >> x != ~0)
link_error ();
}
int
......
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