Commit 06ac83a9 by Jakub Jelinek Committed by Jakub Jelinek

re PR tree-optimization/63551 (wrong code (segfaults) at -Os on x86_64-linux-gnu)

	PR tree-optimization/63551
	* gcc.dg/ipa/pr63551.c (fn2): Use 4294967286U instead of
	4294967286 to avoid warnings.

From-SVN: r218740
parent 41cc1dd0
2014-12-15 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/63551
* gcc.dg/ipa/pr63551.c (fn2): Use 4294967286U instead of
4294967286 to avoid warnings.
2014-12-15 Janus Weil <janus@gcc.gnu.org>
PR fortran/63674
......
......@@ -21,7 +21,7 @@ void
fn2 ()
{
d = 0;
union U b = { 4294967286 };
union U b = { 4294967286U };
fn1 (b);
}
......
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