mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
95b147fe4a
commit
09532ff594
|
@ -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>
|
2004-05-13 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
PR other/10819
|
PR other/10819
|
||||||
|
|
|
@ -6,7 +6,8 @@ enum rtx_code
|
||||||
{
|
{
|
||||||
CALL_INSN,
|
CALL_INSN,
|
||||||
EXPR_LIST,
|
EXPR_LIST,
|
||||||
NOTE
|
NOTE,
|
||||||
|
LAST = 256
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rtx_def
|
struct rtx_def
|
||||||
|
|
|
@ -6,7 +6,7 @@ typedef struct rtx_def *rtx;
|
||||||
enum rtx_code
|
enum rtx_code
|
||||||
{
|
{
|
||||||
REG,
|
REG,
|
||||||
LAST_AND_UNUSED_RTX_CODE
|
LAST_AND_UNUSED_RTX_CODE = 256
|
||||||
};
|
};
|
||||||
typedef union rtunion_def rtunion;
|
typedef union rtunion_def rtunion;
|
||||||
struct rtx_def
|
struct rtx_def
|
||||||
|
|
|
@ -9,7 +9,7 @@ enum rtx_code
|
||||||
UNKNOWN,
|
UNKNOWN,
|
||||||
CODE_LABEL,
|
CODE_LABEL,
|
||||||
NOTE,
|
NOTE,
|
||||||
LAST_AND_UNUSED_RTX_CODE
|
LAST_AND_UNUSED_RTX_CODE = 256
|
||||||
};
|
};
|
||||||
typedef union rtunion_def rtunion;
|
typedef union rtunion_def rtunion;
|
||||||
struct rtx_def
|
struct rtx_def
|
||||||
|
|
Loading…
Reference in New Issue