Commit 551677bf by Richard Guenther Committed by Richard Biener

re PR testsuite/46249 (gcc.dg/tree-ssa/ssa-ccp-32.c: dubious test)

2010-11-02  Richard Guenther  <rguenther@suse.de>

	PR testsuite/46249
	* gcc.dg/tree-ssa/ssa-ccp-32.c: Fix operator precedence.

From-SVN: r166183
parent f6f2ca8f
2010-11-02 Richard Guenther <rguenther@suse.de>
PR testsuite/46249
* gcc.dg/tree-ssa/ssa-ccp-32.c: Fix operator precedence.
2010-11-02 Jakub Jelinek <jakub@redhat.com>
PR debug/46255
......
......@@ -41,7 +41,7 @@ test2 (int a)
if (a & 0xff)
link_error ();
a = a - 1;
if (a & 0xff != 0xff)
if ((a & 0xff) != 0xff)
link_error ();
return a;
}
......
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