OSDN Git Service

* config/xtensa/xtensa.c (xtensa_init_machine_status): Fix
authorbwilson <bwilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Jun 2002 23:41:42 +0000 (23:41 +0000)
committerbwilson <bwilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Jun 2002 23:41:42 +0000 (23:41 +0000)
        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
gcc/config/xtensa/xtensa.c

index bdc94af..50dfd16 100644 (file)
@@ -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.
index 6e6c6d9..911b349 100644 (file)
@@ -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);