diff options
author | Bob Wilson <bob.wilson@acm.org> | 2002-06-04 23:41:42 +0000 |
---|---|---|
committer | Bob Wilson <bwilson@gcc.gnu.org> | 2002-06-04 23:41:42 +0000 |
commit | 072326388a74c6eed48c24ea0a1d61f863fa72ed (patch) | |
tree | 2dff89dd5cbf956c53cd63e7c47a6b5d06ef5327 /gcc | |
parent | 622dc71b657aecccf1d6f089141244ee84b70b9f (diff) | |
download | gcc-072326388a74c6eed48c24ea0a1d61f863fa72ed.zip gcc-072326388a74c6eed48c24ea0a1d61f863fa72ed.tar.gz gcc-072326388a74c6eed48c24ea0a1d61f863fa72ed.tar.bz2 |
xtensa.c (xtensa_init_machine_status): Fix typo in function prototype and include "ggc.h" header.
* config/xtensa/xtensa.c (xtensa_init_machine_status): Fix
typo in function prototype and include "ggc.h" header.
From-SVN: r54269
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/xtensa/xtensa.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bdc94af..50dfd16 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-04 Bob Wilson <bob.wilson@acm.org> + + * config/xtensa/xtensa.c (xtensa_init_machine_status): Fix + typo in function prototype and include "ggc.h" header. + 2002-06-04 Richard Henderson <rth@redhat.com> * config/alpha/alpha.c (mode_mask_operand): Simplify without ifdefs. diff --git a/gcc/config/xtensa/xtensa.c b/gcc/config/xtensa/xtensa.c index 6e6c6d9..911b349 100644 --- a/gcc/config/xtensa/xtensa.c +++ b/gcc/config/xtensa/xtensa.c @@ -44,6 +44,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "optabs.h" #include "output.h" #include "libfuncs.h" +#include "ggc.h" #include "target.h" #include "target-def.h" @@ -193,7 +194,7 @@ static rtx gen_float_relational PARAMS ((enum rtx_code, rtx, rtx)); static rtx gen_conditional_move PARAMS ((rtx)); static rtx fixup_subreg_mem PARAMS ((rtx x)); static enum machine_mode xtensa_find_mode_for_size PARAMS ((unsigned)); -static struct machine_status * xtensa_init_machine_status PARAMS ((void)); +static struct machine_function * xtensa_init_machine_status PARAMS ((void)); static void printx PARAMS ((FILE *, signed int)); static void xtensa_select_rtx_section PARAMS ((enum machine_mode, rtx, unsigned HOST_WIDE_INT)); @@ -1380,7 +1381,7 @@ xtensa_expand_block_move (operands) if (num_pieces >= move_ratio) return 0; - /* make sure the memory addresses are valid */ + /* make sure the memory addresses are valid */ operands[0] = validize_mem (dest); operands[1] = validize_mem (src); |