diff options
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index f68c345482a..65fa29c2bd2 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -1,5 +1,5 @@ /* Communication between reload.c, reload1.c and the rest of compiler. - Copyright (C) 1987-2013 Free Software Foundation, Inc. + Copyright (C) 1987-2014 Free Software Foundation, Inc. This file is part of GCC. @@ -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 |