20030808-1.c: Force enum size.

* gcc.dg/tree-ssa/20030808-1.c: Force enum size.
	* gcc.dg/tree-ssa/20030714-1.c: Ditto.
	* gcc.dg/tree-ssa/20030708-1.c: Ditto.

From-SVN: r81796
This commit is contained in:
Paul Brook 2004-05-13 17:20:10 +00:00 committed by Paul Brook
parent 95b147fe4a
commit 09532ff594
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2004-05-13 Paul Brook <paul@codesourcery.com>
* gcc.dg/tree-ssa/20030808-1.c: Force enum size.
* gcc.dg/tree-ssa/20030714-1.c: Ditto.
* gcc.dg/tree-ssa/20030708-1.c: Ditto.
2004-05-13 Andreas Schwab <schwab@suse.de>
PR other/10819

View File

@ -6,7 +6,8 @@ enum rtx_code
{
CALL_INSN,
EXPR_LIST,
NOTE
NOTE,
LAST = 256
};
struct rtx_def

View File

@ -6,7 +6,7 @@ typedef struct rtx_def *rtx;
enum rtx_code
{
REG,
LAST_AND_UNUSED_RTX_CODE
LAST_AND_UNUSED_RTX_CODE = 256
};
typedef union rtunion_def rtunion;
struct rtx_def

View File

@ -9,7 +9,7 @@ enum rtx_code
UNKNOWN,
CODE_LABEL,
NOTE,
LAST_AND_UNUSED_RTX_CODE
LAST_AND_UNUSED_RTX_CODE = 256
};
typedef union rtunion_def rtunion;
struct rtx_def