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
This commit is contained in:
Andreas Krebbel 2007-07-26 09:02:58 +00:00 committed by Andreas Krebbel
parent 9dcd6f09a3
commit 2b980e3ebc
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* gcc.dg/sibcall-3.c: Skip on PowerPC targets when -mlongcall.

View File

@ -34,7 +34,8 @@ struct tree_base
unsigned lang_flag_6:1;
unsigned visited:1;
unsigned spare:24;
unsigned spare1:16;
unsigned spare2:8;
unsigned long a;
};