diff options
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index f68c345..d7b2842 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -203,7 +203,7 @@ extern struct target_reload *this_target_reload; (this_target_reload->x_caller_save_initialized_p) /* Register equivalences. Indexed by register number. */ -typedef struct reg_equivs_s +struct reg_equivs_t { /* The constant value to which pseudo reg N is equivalent, or zero if pseudo reg N is not equivalent to a constant. @@ -238,7 +238,7 @@ typedef struct reg_equivs_s /* The list of insns that initialized reg N from its equivalent constant or memory slot. */ rtx init; -} reg_equivs_t; +}; #define reg_equiv_constant(ELT) \ (*reg_equivs)[(ELT)].constant |