Commit 09532ff5 by Paul Brook Committed by Paul Brook

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
parent 95b147fe
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
......
......@@ -6,7 +6,8 @@ enum rtx_code
{
CALL_INSN,
EXPR_LIST,
NOTE
NOTE,
LAST = 256
};
struct rtx_def
......
......@@ -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
......
......@@ -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
......
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