diff options
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 1b136597452..f942c5903b7 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -55,8 +55,13 @@ enum rtx_code { NUM_RTX_CODE. Assumes default enum value assignment. */ +/* The cast here, saves many elsewhere. */ #define NUM_RTX_CODE ((int) LAST_AND_UNUSED_RTX_CODE) - /* The cast here, saves many elsewhere. */ + +/* Similar, but since generator files get more entries... */ +#ifdef GENERATOR_FILE +# define NON_GENERATOR_NUM_RTX_CODE ((int) MATCH_OPERAND) +#endif /* Register Transfer Language EXPRESSIONS CODE CLASSES */ |