xtensa.c (xtensa_init_machine_status): Fix typo in function prototype and include...
authorBob Wilson <bob.wilson@acm.org>
Tue, 4 Jun 2002 23:41:42 +0000 (23:41 +0000)
committerBob Wilson <bwilson@gcc.gnu.org>
Tue, 4 Jun 2002 23:41:42 +0000 (23:41 +0000)
        * config/xtensa/xtensa.c (xtensa_init_machine_status): Fix
        typo in function prototype and include "ggc.h" header.

From-SVN: r54269

gcc/ChangeLog
gcc/config/xtensa/xtensa.c

index bdc94af77b78dfc67129de96b77c8f9daae0b35c..50dfd16c19e11a3cc81381067bcce45f85043de5 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 6e6c6d9a3e3839f924712849686a3d30f97971a1..911b349bc9ff32009718e9feef747e5129005b34 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);