Commit 4e5bc135 by Georg-Johann Lay Committed by Georg-Johann Lay

ipcp-3.c (mark_cell): Use mask 1 << 14 instead of 1 << 18 to avoid warning on int=16 platforms..

	* gcc.dg/ipa/ipcp-3.c (mark_cell): Use mask 1 << 14 instead of 1
	<< 18 to avoid warning on int=16 platforms..

From-SVN: r178545
parent 81bf2382
2011-09-05 Georg-Johann Lay <avr@gjlay.de>
* gcc.dg/ipa/ipcp-3.c (mark_cell): Use mask 1 << 14 instead of 1
<< 18 to avoid warning on int=16 platforms..
2011-09-05 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/compat/struct-layout-1_test.h: Decrease bitfield size
......
......@@ -34,7 +34,7 @@ static void
mark_cell(int * interp, Pcc_cell *c)
{
if (c && c->type == 4 && c->p
&& !(c->p->flags & (1<<18)))
&& !(c->p->flags & (1<<14)))
never_ever(interp, c->p);
}
......
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