From 160b212363ad6cd0735e94edc7fe5e6aa00c3a7d Mon Sep 17 00:00:00 2001 From: bwilson Date: Tue, 4 Jun 2002 23:41:42 +0000 Subject: [PATCH] * config/xtensa/xtensa.c (xtensa_init_machine_status): Fix typo in function prototype and include "ggc.h" header. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54269 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/config/xtensa/xtensa.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bdc94af77b7..50dfd16c19e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-04 Bob Wilson + + * config/xtensa/xtensa.c (xtensa_init_machine_status): Fix + typo in function prototype and include "ggc.h" header. + 2002-06-04 Richard Henderson * 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 6e6c6d9a3e3..911b349bc9f 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); -- 2.11.4.GIT