Commit 2b980e3e by Andreas Krebbel Committed by Andreas Krebbel

20070725-1.c: Split the spare field in two to avoid: error: width of 'spare' exceeds its type.

2007-07-26  Andreas Krebbel  <krebbel1@de.ibm.com>

	* gcc.dg/20070725-1.c: Split the spare field in two to avoid:
	error: width of 'spare' exceeds its type.

From-SVN: r126949
parent 9dcd6f09
2007-07-26 Andreas Krebbel <krebbel1@de.ibm.com>
* gcc.dg/20070725-1.c: Split the spare field in two to avoid:
error: width of 'spare' exceeds its type.
2007-07-25 Nathan Froyd <froydnj@codesourcery.com> 2007-07-25 Nathan Froyd <froydnj@codesourcery.com>
* gcc.dg/sibcall-3.c: Skip on PowerPC targets when -mlongcall. * gcc.dg/sibcall-3.c: Skip on PowerPC targets when -mlongcall.
...@@ -34,7 +34,8 @@ struct tree_base ...@@ -34,7 +34,8 @@ struct tree_base
unsigned lang_flag_6:1; unsigned lang_flag_6:1;
unsigned visited:1; unsigned visited:1;
unsigned spare:24; unsigned spare1:16;
unsigned spare2:8;
unsigned long a; unsigned long 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