Make it possible to prototype port-specific functions (and convert i386 to use this)
authorBernd Schmidt <bernds@cygnus.co.uk>
Mon, 20 Sep 1999 10:00:03 +0000 (10:00 +0000)
committerBernd Schmidt <crux@gcc.gnu.org>
Mon, 20 Sep 1999 10:00:03 +0000 (10:00 +0000)
From-SVN: r29514

45 files changed:
gcc/ChangeLog
gcc/Makefile.in
gcc/alias.c
gcc/c-typeck.c
gcc/calls.c
gcc/config/i386/i386-protos.h [new file with mode: 0644]
gcc/config/i386/i386.c
gcc/config/i386/i386.h
gcc/config/i386/i386.md
gcc/configure
gcc/configure.in
gcc/cse.c
gcc/emit-rtl.c
gcc/explow.c
gcc/expmed.c
gcc/expr.c
gcc/final.c
gcc/flow.c
gcc/fold-const.c
gcc/function.c
gcc/gcse.c
gcc/genattrtab.c
gcc/genemit.c
gcc/genoutput.c
gcc/genrecog.c
gcc/global.c
gcc/haifa-sched.c
gcc/integrate.c
gcc/jump.c
gcc/local-alloc.c
gcc/loop.c
gcc/optabs.c
gcc/recog.c
gcc/reg-stack.c
gcc/regclass.c
gcc/regmove.c
gcc/reload.c
gcc/reload1.c
gcc/reorg.c
gcc/resource.c
gcc/stmt.c
gcc/stor-layout.c
gcc/toplev.c
gcc/tree.c
gcc/unroll.c

index b7e638260d262959890f05555ade9a05d6cf3ca3..7b9833fa6ccbe361d12ad146184cf3ea8ff95b56 100644 (file)
@@ -1,3 +1,58 @@
+Mon Sep 20 10:49:05 1999  Bernd Schmidt  <bernds@cygnus.co.uk>
+
+       * Makefile.in (distclean): Delete tm_p.h.
+       * configure.in: Create a new file, "tm_p.h", from a list in
+       "tm_p_file". For ix86 systems, set up "tm_p_file" to include
+       "i386/i386-protos.h".
+
+       * alias.c: Include "tm_p.h".
+       * c-typeck.c: Likewise.
+       * calls.c: Likewise.
+       * cse.c: Likewise.
+       * emit-rtl.c: Likewise.
+       * explow.c: Likewise.
+       * expmed.c: Likewise.
+       * expr.c: Likewise.
+       * final.c: Likewise.
+       * flow.c: Likewise.
+       * fold-const.c: Likewise.
+       * function.c: Likewise.
+       * gcse.c: Likewise.
+       * global.c: Likewise.
+       * haifa-sched.c: Likewise.
+       * integrate.c: Likewise.
+       * jump.c: Likewise.
+       * local-alloc.c: Likewise.
+       * loop.c: Likewise.
+       * optabs.c: Likewise.
+       * recog.c: Likewise.
+       * reg-stack.c: Likewise.
+       * regclass.c: Likewise.
+       * regmove.c: Likewise.
+       * reload.c: Likewise.
+       * reload1.c: Likewise.
+       * reorg.c: Likewise.
+       * resource.c: Likewise.
+       * stmt.c: Likewise.
+       * stor-layout.c: Likewise.
+       * toplev.c: Likewise.
+       * tree.c: Likewise.
+       * unroll.c: Likewise.
+       * genattrtab.c (main): Make generated file include "tm_p.h".
+       * genemit.c (main): Likewise.
+       * genoutput.c (main): Likewise.
+       * genrecog.c (main): Likewise.
+
+       * i386.h: Delete all prototypes.
+       * i386.c: Include "tm_p.h".
+       (ix86_attr_length_default): Call constant_call_address_operand
+       with correct number of arguments.
+       * i386-protos.h: New file.
+       * i386.md (unnamed patterns): Call constant_call_address_operand
+       with correct number of arguments.
+       (exception_receiver): Call load_pic_register with correct number
+       of arguments.
+
 Sun Sep 19 14:18:39 1999  Richard Henderson  <rth@cygnus.com>
 
        * c-pragma.c (mark_align_stack): Dereference the void* properly.
index 42c42f93a373e7cd66afbe6a2e6bef0e9fdb2d5b..fa25f05d175d76f32c6ff48b06543e2d9c3f0f3f 100644 (file)
@@ -2371,7 +2371,7 @@ clean: mostlyclean intl.clean lang.clean
 # while building and installing GCC.
 INTL_DISTCLEAN = intl.distclean
 distclean: clean $(INTL_DISTCLEAN) lang.distclean
-       -rm -f tm.h config.h auto-host.h auto-build.h tconfig.h hconfig.h
+       -rm -f tm.h tm_p.h config.h auto-host.h auto-build.h tconfig.h hconfig.h
        -rm -f md cstamp-h
        -rm -f config.status config.run config.cache config.bak
        -rm -f Make-lang Make-hooks Make-host Make-target
index dd3b3f6803f2e3ab7fe16ef104d27b9ace7a1dc9..686ffb845dd66ee43db5036ef5cc28597006272f 100644 (file)
@@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "function.h"
 #include "expr.h"
 #include "regs.h"
index e27f0f67238f059418e574091799ae0cd510899e..de982588d133231f77470e126969429119e91689 100644 (file)
@@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "tree.h"
 #include "c-tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "output.h"
 #include "rtl.h"
index 6a36ef01c6e110a6bbfb75cb4f4f6046e612de5d..ddf1487adc1ce8ed9c7f1b5baec010544001da18 100644 (file)
@@ -22,6 +22,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "expr.h"
 #include "function.h"
diff --git a/gcc/config/i386/i386-protos.h b/gcc/config/i386/i386-protos.h
new file mode 100644 (file)
index 0000000..dafbcd1
--- /dev/null
@@ -0,0 +1,125 @@
+/* Definitions of target machine for GNU compiler for IA-32.
+   Copyright (C) 1988, 92, 94-98, 1999 Free Software Foundation, Inc.
+
+This file is part of GNU CC.
+
+GNU CC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU CC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU CC; see the file COPYING.  If not, write to
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA. */
+
+/* Functions in i386.c */
+extern void override_options PROTO((void));
+extern void order_regs_for_local_alloc PROTO((void));
+extern void optimization_options PROTO((int, int));
+
+extern int ix86_can_use_return_insn_p PROTO((void));
+
+extern void asm_output_function_prefix PROTO((FILE *, char *));
+extern void load_pic_register PROTO((void));
+extern HOST_WIDE_INT ix86_compute_frame_size PROTO((HOST_WIDE_INT, int *));
+extern void ix86_expand_prologue PROTO((void));
+extern void ix86_expand_epilogue PROTO((void));
+
+extern void ix86_output_function_block_profiler PROTO((FILE *, int));
+extern void ix86_output_block_profiler PROTO((FILE *, int));
+
+#ifdef RTX_CODE
+extern int ix86_aligned_p PROTO((rtx));
+
+extern int standard_80387_constant_p PROTO((rtx));
+extern int symbolic_reference_mentioned_p PROTO((rtx));
+
+extern int symbolic_operand PROTO((rtx, enum machine_mode));
+extern int pic_symbolic_operand PROTO((rtx, enum machine_mode));
+extern int call_insn_operand PROTO((rtx, enum machine_mode));
+extern int expander_call_insn_operand PROTO((rtx, enum machine_mode));
+extern int constant_call_address_operand PROTO((rtx, enum machine_mode));
+extern int const0_operand PROTO((rtx, enum machine_mode));
+extern int const1_operand PROTO((rtx, enum machine_mode));
+extern int const248_operand PROTO((rtx, enum machine_mode));
+extern int incdec_operand PROTO((rtx, enum machine_mode));
+extern int reg_no_sp_operand PROTO((rtx, enum machine_mode));
+extern int q_regs_operand PROTO((rtx, enum machine_mode));
+extern int non_q_regs_operand PROTO((rtx, enum machine_mode));
+extern int no_comparison_operator PROTO((rtx, enum machine_mode));
+extern int fcmov_comparison_operator PROTO((rtx, enum machine_mode));
+extern int cmp_fp_expander_operand PROTO((rtx, enum machine_mode));
+extern int ext_register_operand PROTO((rtx, enum machine_mode));
+extern int binary_fp_operator PROTO((rtx, enum machine_mode));
+extern int mult_operator PROTO((rtx, enum machine_mode));
+extern int div_operator PROTO((rtx, enum machine_mode));
+extern int arith_or_logical_operator PROTO((rtx, enum machine_mode));
+extern int memory_displacement_operand PROTO((rtx, enum machine_mode));
+extern int cmpsi_operand PROTO((rtx, enum machine_mode));
+
+extern int legitimate_pic_address_disp_p PROTO((rtx));
+extern int legitimate_address_p PROTO((enum machine_mode, rtx, int));
+extern rtx legitimize_pic_address PROTO((rtx, rtx));
+extern rtx legitimize_address PROTO((rtx, rtx, enum machine_mode));
+
+extern void print_reg PROTO((rtx, int, FILE*));
+extern void print_operand PROTO((FILE*, rtx, int));
+extern void print_operand_address PROTO((FILE*, rtx));
+
+extern void split_di PROTO((rtx[], int, rtx[], rtx[]));
+
+extern char *output_387_binary_op PROTO((rtx, rtx*));
+extern char *output_fix_trunc PROTO((rtx, rtx*));
+extern char *output_fp_compare PROTO((rtx, rtx*, int, int));
+
+extern void ix86_expand_move PROTO((enum machine_mode, rtx[]));
+extern void ix86_expand_binary_operator PROTO((enum rtx_code,
+                                              enum machine_mode, rtx[]));
+extern int ix86_binary_operator_ok PROTO((enum rtx_code, enum machine_mode,
+                                         rtx[]));
+extern int ix86_expand_unary_operator PROTO((enum rtx_code, enum machine_mode,
+                                            rtx[]));
+extern int ix86_unary_operator_ok PROTO((enum rtx_code, enum machine_mode,
+                                        rtx[]));
+extern void ix86_expand_branch PROTO((enum rtx_code, int, rtx));
+extern int ix86_expand_setcc PROTO((enum rtx_code, int, rtx));
+extern int ix86_expand_int_movcc PROTO((rtx[]));
+extern int ix86_expand_fp_movcc PROTO((rtx[]));
+extern int ix86_split_movdi PROTO((rtx[]));
+extern void ix86_split_ashldi PROTO((rtx *, rtx));
+extern void ix86_split_ashrdi PROTO((rtx *, rtx));
+extern void ix86_split_lshrdi PROTO((rtx *, rtx));
+extern void ix86_expand_strlensi_unroll_1 PROTO((rtx, rtx, rtx));
+
+extern rtx assign_386_stack_local PROTO((enum machine_mode, int));
+extern int ix86_attr_length_default PROTO((rtx));
+
+extern int ix86_issue_rate PROTO((void));
+extern int ix86_adjust_cost PROTO((rtx, rtx, rtx, int));
+extern void ix86_sched_init PROTO((FILE *, int));
+extern int ix86_sched_reorder PROTO((FILE *, int, rtx *, int, int));
+extern int ix86_variable_issue PROTO((FILE *, int, rtx, int));
+
+#ifdef TREE_CODE
+extern void init_cumulative_args PROTO((CUMULATIVE_ARGS *, tree, rtx));
+extern rtx function_arg PROTO((CUMULATIVE_ARGS *, enum machine_mode, tree, int));
+extern void function_arg_advance PROTO((CUMULATIVE_ARGS *, enum machine_mode,
+                                       tree, int));
+#endif
+
+#endif
+
+#ifdef TREE_CODE
+extern int ix86_valid_decl_attribute_p PROTO((tree, tree, tree, tree));
+extern int ix86_valid_type_attribute_p PROTO((tree, tree, tree, tree));
+extern int ix86_comp_type_attributes PROTO((tree, tree));
+extern int ix86_return_pops_args PROTO((tree, tree, int));
+#endif
+
+
index 3042df60bedf7efe7adb666e345a9cfa5d425f74..635b53537c11291c4be9944102decce7eed767ac 100644 (file)
@@ -22,6 +22,8 @@ Boston, MA 02111-1307, USA. */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tree.h"
+#include "tm_p.h"
 #include "regs.h"
 #include "hard-reg-set.h"
 #include "real.h"
@@ -30,7 +32,6 @@ Boston, MA 02111-1307, USA. */
 #include "insn-flags.h"
 #include "output.h"
 #include "insn-attr.h"
-#include "tree.h"
 #include "flags.h"
 #include "except.h"
 #include "function.h"
@@ -5110,12 +5111,14 @@ ix86_attr_length_default (insn)
       break;
 
     case TYPE_CALL:
-      if (constant_call_address_operand (recog_data.operand[0]))
+      if (constant_call_address_operand (recog_data.operand[0],
+                                        GET_MODE (recog_data.operand[0])))
        return 5;
       break;
 
     case TYPE_CALLV:
-      if (constant_call_address_operand (recog_data.operand[1]))
+      if (constant_call_address_operand (recog_data.operand[1],
+                                        GET_MODE (recog_data.operand[1])))
        return 5;
       break;
 
index 369be613ab0e1eb2058dbafb86196cd49f5888c6..3b302a254efcc03b2a7f57a4ea6bdfd5ae7fca86 100644 (file)
@@ -2397,114 +2397,6 @@ do { long l;                                            \
   {"cmpsi_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,       \
                     LABEL_REF, SUBREG, REG, MEM, AND}},
 \f
-/* Functions in i386.c */
-
-#if 1
-#define XPARAMS(x) ()
-#else
-#define XPARAMS(x) PROTO(x)
-#endif
-#define xrtx   struct rtx_def *
-#define xtree  struct tree_def *
-#define xmode  enum machine_mode
-#define xcode  enum rtx_code
-
-extern void override_options XPARAMS((void));
-extern void order_regs_for_local_alloc XPARAMS((void));
-extern void optimization_options XPARAMS((int, int));
-extern int ix86_aligned_p XPARAMS((xrtx));
-extern int ix86_valid_decl_attribute_p XPARAMS((xtree, xtree, xtree, xtree));
-extern int ix86_valid_type_attribute_p XPARAMS((xtree, xtree, xtree, xtree));
-extern int ix86_comp_type_attributes XPARAMS((xtree, xtree));
-extern int ix86_return_pops_args XPARAMS((xtree, xtree, int));
-extern void init_cumulative_args XPARAMS((CUMULATIVE_ARGS*, xtree, xrtx));
-extern void function_arg_advance XPARAMS((CUMULATIVE_ARGS*,xmode,xtree,int));
-extern xrtx function_arg XPARAMS((CUMULATIVE_ARGS*, xmode, xtree, int));
-
-extern int symbolic_operand XPARAMS((xrtx, xmode));
-extern int pic_symbolic_operand XPARAMS((xrtx, xmode));
-extern int call_insn_operand XPARAMS((xrtx, xmode));
-extern int expander_call_insn_operand XPARAMS((xrtx, xmode));
-extern int constant_call_address_operand XPARAMS((xrtx, xmode));
-extern int const0_operand XPARAMS((xrtx, xmode));
-extern int const1_operand XPARAMS((xrtx, xmode));
-extern int const248_operand XPARAMS((xrtx, xmode));
-extern int incdec_operand XPARAMS((xrtx, xmode));
-extern int reg_no_sp_operand XPARAMS((xrtx, xmode));
-extern int q_regs_operand XPARAMS((xrtx, xmode));
-extern int non_q_regs_operand XPARAMS((xrtx, xmode));
-extern int no_comparison_operator XPARAMS((xrtx, xmode));
-extern int fcmov_comparison_operator XPARAMS((xrtx, xmode));
-extern int cmp_fp_expander_operand XPARAMS((xrtx, xmode));
-extern int ext_register_operand XPARAMS((xrtx, xmode));
-extern int binary_fp_operator XPARAMS((xrtx, xmode));
-extern int mult_operator XPARAMS((xrtx, xmode));
-extern int div_operator XPARAMS((xrtx, xmode));
-extern int arith_or_logical_operator XPARAMS((xrtx, xmode));
-extern int memory_displacement_operand XPARAMS((xrtx, xmode));
-extern int cmpsi_operand XPARAMS((xrtx, xmode));
-
-extern int standard_80387_constant_p XPARAMS((xrtx));
-extern int symbolic_reference_mentioned_p XPARAMS((xrtx));
-extern int ix86_can_use_return_insn_p XPARAMS((void));
-
-extern void asm_output_function_prefix XPARAMS((FILE, char *));
-extern void load_pic_register XPARAMS((void));
-#if 0
-/* HOST_WIDE_INT isn't defined yet.  */
-extern HOST_WIDE_INT ix86_compute_frame_size XPARAMS ((HOST_WIDE_INT, int *));
-#endif
-extern void ix86_expand_prologue XPARAMS((void));
-extern void ix86_expand_epilogue XPARAMS((void));
-
-extern int legitimate_pic_address_disp_p XPARAMS((xrtx));
-extern int legitimate_address_p XPARAMS((xmode, xrtx, int));
-extern xrtx legitimize_pic_address XPARAMS((xrtx, xrtx));
-extern xrtx legitimize_address XPARAMS((xrtx, xrtx, xmode));
-
-extern void print_reg XPARAMS((xrtx, int, FILE*));
-extern void print_operand XPARAMS((FILE*, xrtx, int));
-extern void print_operand_address XPARAMS((FILE*, xrtx));
-
-extern void split_di XPARAMS((xrtx[], int, xrtx[], xrtx[]));
-
-extern char *output_387_binary_op XPARAMS((xrtx, xrtx*));
-extern char *output_fix_trunc XPARAMS((xrtx, xrtx*));
-extern char *output_fp_compare XPARAMS((xrtx, xrtx*, int, int));
-extern void ix86_output_function_block_profiler XPARAMS((FILE*, int));
-extern void ix86_output_block_profiler XPARAMS((FILE*, int));
-
-extern void ix86_expand_move XPARAMS((xmode, xrtx[]));
-extern void ix86_expand_binary_operator XPARAMS((xcode, xmode, xrtx[]));
-extern int ix86_binary_operator_ok XPARAMS((xcode, xmode, xrtx[]));
-extern int ix86_expand_unary_operator XPARAMS((xcode, xmode, xrtx[]));
-extern int ix86_unary_operator_ok XPARAMS((xcode, xmode, xrtx[]));
-extern void ix86_expand_branch XPARAMS((xcode, int, xrtx));
-extern int ix86_expand_setcc XPARAMS((xcode, int, xrtx));
-extern int ix86_expand_int_movcc XPARAMS((xrtx[]));
-extern int ix86_expand_fp_movcc XPARAMS((xrtx[]));
-extern int ix86_split_movdi XPARAMS((xrtx[]));
-extern void ix86_split_ashldi XPARAMS((xrtx *, xrtx));
-extern void ix86_split_ashrdi XPARAMS((xrtx *, xrtx));
-extern void ix86_split_lshrdi XPARAMS((xrtx *, xrtx));
-extern void ix86_expand_strlensi_unroll_1 XPARAMS((xrtx, xrtx, xrtx));
-
-extern xrtx assign_386_stack_local XPARAMS((xmode, int));
-extern int ix86_attr_length_default XPARAMS((xrtx));
-
-extern int ix86_issue_rate XPARAMS((void));
-extern int ix86_adjust_cost XPARAMS((xrtx, xrtx, xrtx, int));
-extern void ix86_sched_init XPARAMS((FILE *, int));
-extern int ix86_sched_reorder XPARAMS((FILE *, int, xrtx *, int));
-extern int ix86_variable_issue XPARAMS((FILE *, int, xrtx, int));
-
-
-#undef XPARAMS
-#undef xrtx
-#undef xtree
-#undef xmode
-#undef xcode
-
 /* Variables in i386.c */
 extern const char *ix86_cpu_string;            /* for -mcpu=<xxx> */
 extern const char *ix86_arch_string;           /* for -march=<xxx> */
index 0841ba194e0b20c28c43342bfaf6bb244fe6e3a9..53b23f87a8dc3d3f3fc2570188cd63e3bd5dd49e 100644 (file)
   ""
   "*
 {
-  if (constant_call_address_operand (operands[0]))
+  if (constant_call_address_operand (operands[0], GET_MODE (operands[0])))
     return \"call\\t%P0\";
   
   operands[0] = XEXP (operands[0], 0);
   ""
   "*
 {
-  if (constant_call_address_operand (operands[0]))
+  if (constant_call_address_operand (operands[0], GET_MODE (operands[0])))
     return \"call\\t%P0\";
   
   operands[0] = XEXP (operands[0], 0);
   ""
   "*
 {
-  if (constant_call_address_operand (operands[1]))
+  if (constant_call_address_operand (operands[1], GET_MODE (operands[1])))
     return \"call\\t%P1\";
   
   operands[1] = XEXP (operands[1], 0);
   ""
   "*
 {
-  if (constant_call_address_operand (operands[1]))
+  if (constant_call_address_operand (operands[1], GET_MODE (operands[1])))
     return \"call\\t%P1\";
   
   operands[1] = XEXP (operands[1], 0);
   "flag_pic"
   "
 {
-  load_pic_register (1);
+  load_pic_register ();
   DONE;
 }")
 \f
index dbc2e25d7581b969499376d9b64ebb95c22b47a6..3efcd2d7b63af219ba114f9aee3553e5d9c71e47 100755 (executable)
@@ -1334,7 +1334,7 @@ else
 fi
 
 # Find some useful tools
-for ac_prog in mawk gawk nawk awk
+for ac_prog in gawk mawk nawk awk
 do
 # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
@@ -3010,8 +3010,9 @@ for machine in $build $host $target; do
        gnu_ld="$gnu_ld_flag"
        enable_threads=$enable_threads_flag
 
-       # Set default cpu_type, tm_file and xm_file so it can be updated in
-       # each machine entry.
+       # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
+       # updated in each machine entry.
+       tm_p_file=
        cpu_type=`echo $machine | sed 's/-.*$//'`
        case $machine in
        alpha*-*-*)
@@ -3048,7 +3049,10 @@ for machine in $build $host $target; do
 
        tm_file=${cpu_type}/${cpu_type}.h
        xm_file=${cpu_type}/xm-${cpu_type}.h
-       
+       if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h;
+       then
+               tm_p_file=${cpu_type}/${cpu_type}-protos.h;
+       fi
        # On a.out targets, we need to use collect2.
        case $machine in
        *-*-*aout*)
@@ -6261,9 +6265,9 @@ fi
 xm_file="gansidecl.h ${xm_file}"
 tm_file="gansidecl.h ${tm_file}"
 
-vars="host_xm_file tm_file xm_file build_xm_file"
-links="config.h tm.h tconfig.h hconfig.h"
-defines="host_xm_defines null_defines xm_defines build_xm_defines"
+vars="host_xm_file tm_file tm_p_file xm_file build_xm_file"
+links="config.h tm.h tm_p.h tconfig.h hconfig.h"
+defines="host_xm_defines null_defines null_defines xm_defines build_xm_defines"
 
 rm -f config.bak
 if test -f config.status; then mv -f config.status config.bak; fi
@@ -6276,6 +6280,8 @@ do
        set $defines; define=$1; shift; defines=$*
 
        rm -f $link
+       # Make sure the file is created, even if it is empty.
+       echo >$link
 
        # Define TARGET_CPU_DEFAULT if the system wants one.
        # This substitutes for lots of *.h files.
@@ -6350,7 +6356,7 @@ fi
 
 
         echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6
-echo "configure:6354: checking for strerror in -lcposix" >&5
+echo "configure:6360: checking for strerror in -lcposix" >&5
 ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6358,7 +6364,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lcposix  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6362 "configure"
+#line 6368 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6369,7 +6375,7 @@ int main() {
 strerror()
 ; return 0; }
 EOF
-if { (eval echo configure:6373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:6379: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6392,12 +6398,12 @@ fi
   
 
 echo $ac_n "checking for working const""... $ac_c" 1>&6
-echo "configure:6396: checking for working const" >&5
+echo "configure:6402: checking for working const" >&5
 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6401 "configure"
+#line 6407 "configure"
 #include "confdefs.h"
 
 int main() {
@@ -6446,7 +6452,7 @@ ccp = (char const *const *) p;
 
 ; return 0; }
 EOF
-if { (eval echo configure:6450: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:6456: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
   rm -rf conftest*
   ac_cv_c_const=yes
 else
@@ -6467,21 +6473,21 @@ EOF
 fi
 
 echo $ac_n "checking for inline""... $ac_c" 1>&6
-echo "configure:6471: checking for inline" >&5
+echo "configure:6477: checking for inline" >&5
 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   ac_cv_c_inline=no
 for ac_kw in inline __inline__ __inline; do
   cat > conftest.$ac_ext <<EOF
-#line 6478 "configure"
+#line 6484 "configure"
 #include "confdefs.h"
 
 int main() {
 } $ac_kw foo() {
 ; return 0; }
 EOF
-if { (eval echo configure:6485: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:6491: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
   rm -rf conftest*
   ac_cv_c_inline=$ac_kw; break
 else
@@ -6507,12 +6513,12 @@ EOF
 esac
 
 echo $ac_n "checking for off_t""... $ac_c" 1>&6
-echo "configure:6511: checking for off_t" >&5
+echo "configure:6517: checking for off_t" >&5
 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6516 "configure"
+#line 6522 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #if STDC_HEADERS
@@ -6540,12 +6546,12 @@ EOF
 fi
 
 echo $ac_n "checking for size_t""... $ac_c" 1>&6
-echo "configure:6544: checking for size_t" >&5
+echo "configure:6550: checking for size_t" >&5
 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6549 "configure"
+#line 6555 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #if STDC_HEADERS
@@ -6575,19 +6581,19 @@ fi
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
-echo "configure:6579: checking for working alloca.h" >&5
+echo "configure:6585: checking for working alloca.h" >&5
 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6584 "configure"
+#line 6590 "configure"
 #include "confdefs.h"
 #include <alloca.h>
 int main() {
 char *p = alloca(2 * sizeof(int));
 ; return 0; }
 EOF
-if { (eval echo configure:6591: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:6597: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   ac_cv_header_alloca_h=yes
 else
@@ -6608,12 +6614,12 @@ EOF
 fi
 
 echo $ac_n "checking for alloca""... $ac_c" 1>&6
-echo "configure:6612: checking for alloca" >&5
+echo "configure:6618: checking for alloca" >&5
 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6617 "configure"
+#line 6623 "configure"
 #include "confdefs.h"
 
 #ifdef __GNUC__
@@ -6641,7 +6647,7 @@ int main() {
 char *p = (char *) alloca(1);
 ; return 0; }
 EOF
-if { (eval echo configure:6645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:6651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   ac_cv_func_alloca_works=yes
 else
@@ -6673,12 +6679,12 @@ EOF
 
 
 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
-echo "configure:6677: checking whether alloca needs Cray hooks" >&5
+echo "configure:6683: checking whether alloca needs Cray hooks" >&5
 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6682 "configure"
+#line 6688 "configure"
 #include "confdefs.h"
 #if defined(CRAY) && ! defined(CRAY2)
 webecray
@@ -6703,12 +6709,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6
 if test $ac_cv_os_cray = yes; then
 for ac_func in _getb67 GETB67 getb67; do
   echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:6707: checking for $ac_func" >&5
+echo "configure:6713: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6712 "configure"
+#line 6718 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -6731,7 +6737,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:6735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:6741: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -6758,7 +6764,7 @@ done
 fi
 
 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
-echo "configure:6762: checking stack direction for C alloca" >&5
+echo "configure:6768: checking stack direction for C alloca" >&5
 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -6766,7 +6772,7 @@ else
   ac_cv_c_stack_direction=0
 else
   cat > conftest.$ac_ext <<EOF
-#line 6770 "configure"
+#line 6776 "configure"
 #include "confdefs.h"
 find_stack_direction ()
 {
@@ -6785,7 +6791,7 @@ main ()
   exit (find_stack_direction() < 0);
 }
 EOF
-if { (eval echo configure:6789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:6795: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
 then
   ac_cv_c_stack_direction=1
 else
@@ -6810,17 +6816,17 @@ for ac_hdr in unistd.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
-echo "configure:6814: checking for $ac_hdr" >&5
+echo "configure:6820: checking for $ac_hdr" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6819 "configure"
+#line 6825 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:6824: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:6830: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -6849,12 +6855,12 @@ done
 for ac_func in getpagesize
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:6853: checking for $ac_func" >&5
+echo "configure:6859: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6858 "configure"
+#line 6864 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -6877,7 +6883,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:6881: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:6887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -6902,7 +6908,7 @@ fi
 done
 
 echo $ac_n "checking for working mmap""... $ac_c" 1>&6
-echo "configure:6906: checking for working mmap" >&5
+echo "configure:6912: checking for working mmap" >&5
 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -6910,7 +6916,7 @@ else
   ac_cv_func_mmap_fixed_mapped=no
 else
   cat > conftest.$ac_ext <<EOF
-#line 6914 "configure"
+#line 6920 "configure"
 #include "confdefs.h"
 
 /* Thanks to Mike Haertel and Jim Avera for this test.
@@ -7050,7 +7056,7 @@ main()
 }
 
 EOF
-if { (eval echo configure:7054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:7060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
 then
   ac_cv_func_mmap_fixed_mapped=yes
 else
@@ -7078,17 +7084,17 @@ unistd.h sys/param.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
-echo "configure:7082: checking for $ac_hdr" >&5
+echo "configure:7088: checking for $ac_hdr" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7087 "configure"
+#line 7093 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:7092: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:7098: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -7118,12 +7124,12 @@ done
 strdup __argz_count __argz_stringify __argz_next
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:7122: checking for $ac_func" >&5
+echo "configure:7128: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7127 "configure"
+#line 7133 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -7146,7 +7152,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:7150: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7156: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -7175,12 +7181,12 @@ done
      for ac_func in stpcpy
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:7179: checking for $ac_func" >&5
+echo "configure:7185: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7184 "configure"
+#line 7190 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -7203,7 +7209,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:7207: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -7237,19 +7243,19 @@ EOF
 
    if test $ac_cv_header_locale_h = yes; then
     echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
-echo "configure:7241: checking for LC_MESSAGES" >&5
+echo "configure:7247: checking for LC_MESSAGES" >&5
 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7246 "configure"
+#line 7252 "configure"
 #include "confdefs.h"
 #include <locale.h>
 int main() {
 return LC_MESSAGES
 ; return 0; }
 EOF
-if { (eval echo configure:7253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7259: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   am_cv_val_LC_MESSAGES=yes
 else
@@ -7270,7 +7276,7 @@ EOF
     fi
   fi
    echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6
-echo "configure:7274: checking whether NLS is requested" >&5
+echo "configure:7280: checking whether NLS is requested" >&5
         # Check whether --enable-nls or --disable-nls was given.
 if test "${enable_nls+set}" = set; then
   enableval="$enable_nls"
@@ -7290,7 +7296,7 @@ fi
 EOF
 
       echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6
-echo "configure:7294: checking whether included gettext is requested" >&5
+echo "configure:7300: checking whether included gettext is requested" >&5
       # Check whether --with-included-gettext or --without-included-gettext was given.
 if test "${with_included_gettext+set}" = set; then
   withval="$with_included_gettext"
@@ -7309,17 +7315,17 @@ fi
 
        ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6
-echo "configure:7313: checking for libintl.h" >&5
+echo "configure:7319: checking for libintl.h" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7318 "configure"
+#line 7324 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:7323: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:7329: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -7336,19 +7342,19 @@ fi
 if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
   echo "$ac_t""yes" 1>&6
   echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6
-echo "configure:7340: checking for gettext in libc" >&5
+echo "configure:7346: checking for gettext in libc" >&5
 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7345 "configure"
+#line 7351 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 int main() {
 return (int) gettext ("")
 ; return 0; }
 EOF
-if { (eval echo configure:7352: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7358: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   gt_cv_func_gettext_libc=yes
 else
@@ -7364,7 +7370,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6
 
           if test "$gt_cv_func_gettext_libc" != "yes"; then
             echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6
-echo "configure:7368: checking for bindtextdomain in -lintl" >&5
+echo "configure:7374: checking for bindtextdomain in -lintl" >&5
 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -7372,7 +7378,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lintl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 7376 "configure"
+#line 7382 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -7383,7 +7389,7 @@ int main() {
 bindtextdomain()
 ; return 0; }
 EOF
-if { (eval echo configure:7387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7393: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -7399,12 +7405,12 @@ fi
 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
   echo "$ac_t""yes" 1>&6
   echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6
-echo "configure:7403: checking for gettext in libintl" >&5
+echo "configure:7409: checking for gettext in libintl" >&5
 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6
-echo "configure:7408: checking for gettext in -lintl" >&5
+echo "configure:7414: checking for gettext in -lintl" >&5
 ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -7412,7 +7418,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lintl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 7416 "configure"
+#line 7422 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -7423,7 +7429,7 @@ int main() {
 gettext()
 ; return 0; }
 EOF
-if { (eval echo configure:7427: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7433: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -7462,7 +7468,7 @@ EOF
              # Extract the first word of "msgfmt", so it can be a program name with args.
 set dummy msgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7466: checking for $ac_word" >&5
+echo "configure:7472: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7496,12 +7502,12 @@ fi
                for ac_func in dcgettext
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:7500: checking for $ac_func" >&5
+echo "configure:7506: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7505 "configure"
+#line 7511 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -7524,7 +7530,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:7528: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7534: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -7551,7 +7557,7 @@ done
                # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7555: checking for $ac_word" >&5
+echo "configure:7561: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7587,7 +7593,7 @@ fi
                # Extract the first word of "xgettext", so it can be a program name with args.
 set dummy xgettext; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7591: checking for $ac_word" >&5
+echo "configure:7597: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7619,7 +7625,7 @@ else
 fi
 
                cat > conftest.$ac_ext <<EOF
-#line 7623 "configure"
+#line 7629 "configure"
 #include "confdefs.h"
 
 int main() {
@@ -7627,7 +7633,7 @@ extern int _nl_msg_cat_cntr;
                               return _nl_msg_cat_cntr
 ; return 0; }
 EOF
-if { (eval echo configure:7631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   CATOBJEXT=.gmo
                   DATADIRNAME=share
@@ -7650,7 +7656,7 @@ fi
 
         if test "$CATOBJEXT" = "NONE"; then
          echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6
-echo "configure:7654: checking whether catgets can be used" >&5
+echo "configure:7660: checking whether catgets can be used" >&5
          # Check whether --with-catgets or --without-catgets was given.
 if test "${with_catgets+set}" = set; then
   withval="$with_catgets"
@@ -7663,7 +7669,7 @@ fi
 
          if test "$nls_cv_use_catgets" = "yes"; then
                    echo $ac_n "checking for main in -li""... $ac_c" 1>&6
-echo "configure:7667: checking for main in -li" >&5
+echo "configure:7673: checking for main in -li" >&5
 ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -7671,14 +7677,14 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-li  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 7675 "configure"
+#line 7681 "configure"
 #include "confdefs.h"
 
 int main() {
 main()
 ; return 0; }
 EOF
-if { (eval echo configure:7682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -7706,12 +7712,12 @@ else
 fi
 
            echo $ac_n "checking for catgets""... $ac_c" 1>&6
-echo "configure:7710: checking for catgets" >&5
+echo "configure:7716: checking for catgets" >&5
 if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 7715 "configure"
+#line 7721 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char catgets(); below.  */
@@ -7734,7 +7740,7 @@ catgets();
 
 ; return 0; }
 EOF
-if { (eval echo configure:7738: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:7744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_func_catgets=yes"
 else
@@ -7756,7 +7762,7 @@ EOF
               # Extract the first word of "gencat", so it can be a program name with args.
 set dummy gencat; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7760: checking for $ac_word" >&5
+echo "configure:7766: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7792,7 +7798,7 @@ fi
                 # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7796: checking for $ac_word" >&5
+echo "configure:7802: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7829,7 +7835,7 @@ fi
                   # Extract the first word of "msgfmt", so it can be a program name with args.
 set dummy msgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7833: checking for $ac_word" >&5
+echo "configure:7839: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7864,7 +7870,7 @@ fi
                 # Extract the first word of "xgettext", so it can be a program name with args.
 set dummy xgettext; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7868: checking for $ac_word" >&5
+echo "configure:7874: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7922,7 +7928,7 @@ fi
         # Extract the first word of "msgfmt", so it can be a program name with args.
 set dummy msgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7926: checking for $ac_word" >&5
+echo "configure:7932: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7956,7 +7962,7 @@ fi
         # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7960: checking for $ac_word" >&5
+echo "configure:7966: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -7992,7 +7998,7 @@ fi
         # Extract the first word of "xgettext", so it can be a program name with args.
 set dummy xgettext; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:7996: checking for $ac_word" >&5
+echo "configure:8002: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -8085,7 +8091,7 @@ fi
        LINGUAS=
      else
        echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6
-echo "configure:8089: checking for catalogs to be installed" >&5
+echo "configure:8095: checking for catalogs to be installed" >&5
        NEW_LINGUAS=
        for lang in ${LINGUAS=$ALL_LINGUAS}; do
          case "$ALL_LINGUAS" in
@@ -8113,17 +8119,17 @@ echo "configure:8089: checking for catalogs to be installed" >&5
    if test "$CATOBJEXT" = ".cat"; then
      ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6
-echo "configure:8117: checking for linux/version.h" >&5
+echo "configure:8123: checking for linux/version.h" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 8122 "configure"
+#line 8128 "configure"
 #include "confdefs.h"
 #include <linux/version.h>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8127: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8133: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -8198,7 +8204,7 @@ fi
 
 
 echo $ac_n "checking whether windows registry support is requested""... $ac_c" 1>&6
-echo "configure:8202: checking whether windows registry support is requested" >&5
+echo "configure:8208: checking whether windows registry support is requested" >&5
 if test x$enable_win32_registry != xno; then
   cat >> confdefs.h <<\EOF
 #define ENABLE_WIN32_REGISTRY 1
@@ -8227,7 +8233,7 @@ esac
 
 if test x$enable_win32_registry != xno; then
   echo $ac_n "checking registry key on windows hosts""... $ac_c" 1>&6
-echo "configure:8231: checking registry key on windows hosts" >&5
+echo "configure:8237: checking registry key on windows hosts" >&5
   cat >> confdefs.h <<EOF
 #define WIN32_REGISTRY_KEY "$gcc_cv_win32_registry_key"
 EOF
@@ -8403,7 +8409,7 @@ fi
 
 # Figure out what assembler alignment features are present.
 echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6
-echo "configure:8407: checking assembler alignment features" >&5
+echo "configure:8413: checking assembler alignment features" >&5
 gcc_cv_as=
 gcc_cv_as_alignment_features=
 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
@@ -8524,7 +8530,7 @@ fi
 echo "$ac_t""$gcc_cv_as_alignment_features" 1>&6
 
 echo $ac_n "checking assembler subsection support""... $ac_c" 1>&6
-echo "configure:8528: checking assembler subsection support" >&5
+echo "configure:8534: checking assembler subsection support" >&5
 gcc_cv_as_subsections=
 if test x$gcc_cv_as != x; then
        # Check if we have .subsection
@@ -8566,7 +8572,7 @@ echo "$ac_t""$gcc_cv_as_subsections" 1>&6
 case "$target" in 
   sparc*-*-*)
     echo $ac_n "checking assembler .register pseudo-op support""... $ac_c" 1>&6
-echo "configure:8570: checking assembler .register pseudo-op support" >&5
+echo "configure:8576: checking assembler .register pseudo-op support" >&5
     gcc_cv_as_register_pseudo_op=
     if test x$gcc_cv_as != x; then
        # Check if we have .register
@@ -8583,7 +8589,7 @@ EOF
     echo "$ac_t""$gcc_cv_as_register_pseudo_op" 1>&6
 
     echo $ac_n "checking assembler offsetable %lo() support""... $ac_c" 1>&6
-echo "configure:8587: checking assembler offsetable %lo() support" >&5
+echo "configure:8593: checking assembler offsetable %lo() support" >&5
     gcc_cv_as_offsetable_lo10=
     if test x$gcc_cv_as != x; then
        # Check if assembler has offsetable %lo()
@@ -8620,7 +8626,7 @@ EOF
 
   i[34567]86-*-*)
     echo $ac_n "checking assembler instructions""... $ac_c" 1>&6
-echo "configure:8624: checking assembler instructions" >&5
+echo "configure:8630: checking assembler instructions" >&5
     gcc_cv_as_instructions=
     if test x$gcc_cv_as != x; then
        set "filds fists" "filds mem; fists mem"
index 51687e82ba61dfecc0cd3fa98484b6beff9bea1b..2ce4ac7d8ab04fee7399c1e531832b17db3ddf56 100644 (file)
@@ -475,8 +475,9 @@ for machine in $build $host $target; do
        gnu_ld="$gnu_ld_flag"
        enable_threads=$enable_threads_flag
 
-       # Set default cpu_type, tm_file and xm_file so it can be updated in
-       # each machine entry.
+       # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
+       # updated in each machine entry.
+       tm_p_file=
        cpu_type=`echo $machine | sed 's/-.*$//'`
        case $machine in
        alpha*-*-*)
@@ -515,7 +516,10 @@ changequote([,])dnl
 
        tm_file=${cpu_type}/${cpu_type}.h
        xm_file=${cpu_type}/xm-${cpu_type}.h
-       
+       if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h;
+       then
+               tm_p_file=${cpu_type}/${cpu_type}-protos.h;
+       fi
        # On a.out targets, we need to use collect2.
        case $machine in
        *-*-*aout*)
@@ -3860,9 +3864,9 @@ fi
 xm_file="gansidecl.h ${xm_file}"
 tm_file="gansidecl.h ${tm_file}"
 
-vars="host_xm_file tm_file xm_file build_xm_file"
-links="config.h tm.h tconfig.h hconfig.h"
-defines="host_xm_defines null_defines xm_defines build_xm_defines"
+vars="host_xm_file tm_file tm_p_file xm_file build_xm_file"
+links="config.h tm.h tm_p.h tconfig.h hconfig.h"
+defines="host_xm_defines null_defines null_defines xm_defines build_xm_defines"
 
 rm -f config.bak
 if test -f config.status; then mv -f config.status config.bak; fi
@@ -3875,6 +3879,8 @@ do
        set $defines; define=$1; shift; defines=$*
 
        rm -f $link
+       # Make sure the file is created, even if it is empty.
+       echo >$link
 
        # Define TARGET_CPU_DEFAULT if the system wants one.
        # This substitutes for lots of *.h files.
index 4da61f8a04d9925d1020c5522851e10e86e86bd1..8275974073d39e7c8e59cccfee2baed2202160ff 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA.  */
 #include <setjmp.h>
 
 #include "rtl.h"
+#include "tm_p.h"
 #include "regs.h"
 #include "hard-reg-set.h"
 #include "flags.h"
index 56886fb280f873d8fd5cc4d11c6beb27b9ecc39f..0e6dc1bea8e8bbd8847453110dbccf61a7afddc6 100644 (file)
@@ -39,6 +39,7 @@ Boston, MA 02111-1307, USA.  */
 #include "toplev.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "function.h"
 #include "expr.h"
index 573c5295ede332bc06c9d4b544ac917ea6ee3583..28afe3cfb1f485e4e4b0c0f402680e2b446f3d05 100644 (file)
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA.  */
 #include "toplev.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "function.h"
 #include "expr.h"
index 1ac3272e80a54e56f9e3fc0999c577e116aea6e9..c0fa722e8c9a98f21c5282f80ea5d6fb173b0f65 100644 (file)
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA.  */
 #include "toplev.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "insn-flags.h"
 #include "insn-codes.h"
index 880e347a68e46d31dd6fdb53be1cdb280b51bfe6..39bfb4944edc6c60f668706e7d65efd8cfeabf15 100644 (file)
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA.  */
 #include "machmode.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "obstack.h"
 #include "flags.h"
 #include "regs.h"
index d3b3579d0811d539e6a0d779ff05b970992f2966..1a90979fc976167c43dc7aa3089bc1c78c8b1339 100644 (file)
@@ -49,6 +49,7 @@ Boston, MA 02111-1307, USA.  */
 
 #include "tree.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "regs.h"
 #include "insn-config.h"
 #include "insn-flags.h"
index 5bd8453ce49d972c5390b5b4ccd23829ae8c661a..c7f2d15f58f72fc875452a7d47a5d9f227e1ffdf 100644 (file)
@@ -121,6 +121,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "basic-block.h"
 #include "insn-config.h"
 #include "regs.h"
index c13b6908c43c8c97e70a9882af6698d0982a9048..7fe6f25fe2364baa12b0ff4389185b2db96d57f0 100644 (file)
@@ -48,6 +48,7 @@ Boston, MA 02111-1307, USA.  */
 #include "flags.h"
 #include "tree.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "toplev.h"
 #include "ggc.h"
 
index ffbcd0185c4b14cc00ae1f4c81843a7dd013e300..eec10118276648876f0935f543868489afd0501a 100644 (file)
@@ -42,6 +42,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "except.h"
 #include "function.h"
index a90a200cf93d49df5ecb9869d7a5eb16505e9b2d..6687d6b363d7b085c4013b73a3656f79dba279bd 100644 (file)
@@ -144,6 +144,7 @@ Boston, MA 02111-1307, USA.  */
 #include "toplev.h"
 
 #include "rtl.h"
+#include "tm_p.h"
 #include "regs.h"
 #include "hard-reg-set.h"
 #include "flags.h"
index b02f2e0a22c9c8c484ae7df5cac6d6cb5aa5eff6..19adfeae06b6eb7ef9199774a4979e9236877187 100644 (file)
@@ -6073,6 +6073,7 @@ from the machine description file `md'.  */\n\n");
   printf ("#include \"config.h\"\n");
   printf ("#include \"system.h\"\n");
   printf ("#include \"rtl.h\"\n");
+  printf ("#include \"tm_p.h\"\n");
   printf ("#include \"insn-config.h\"\n");
   printf ("#include \"recog.h\"\n");
   printf ("#include \"regs.h\"\n");
index d1b3a1b43274f7e5b4ddeea315c19ddcba9bd45c..3608e52a57c1806195d936907aa8db4fbe8cee31 100644 (file)
@@ -800,6 +800,7 @@ from the machine description file `md'.  */\n\n");
   printf ("#include \"config.h\"\n");
   printf ("#include \"system.h\"\n");
   printf ("#include \"rtl.h\"\n");
+  printf ("#include \"tm_p.h\"\n");
   printf ("#include \"function.h\"\n");
   printf ("#include \"expr.h\"\n");
   printf ("#include \"real.h\"\n");
index c266342b180a054e6b2990080013c142ae785ffc..89859a82dcedcf1ad9e683c38a6fe5f76eb9228c 100644 (file)
@@ -227,6 +227,7 @@ from the machine description file `md'.  */\n\n");
   printf ("#include \"system.h\"\n");
   printf ("#include \"flags.h\"\n");
   printf ("#include \"rtl.h\"\n");
+  printf ("#include \"tm_p.h\"\n");
   printf ("#include \"function.h\"\n");
   printf ("#include \"regs.h\"\n");
   printf ("#include \"hard-reg-set.h\"\n");
index 49d4a4ea8a24df218836839e680e8ee72ee2e688..4d3d74952dc381b6c18b14df20c938c3df733137 100644 (file)
@@ -1903,6 +1903,7 @@ from the machine description file `md'.  */\n\n");
   printf ("#include \"config.h\"\n");
   printf ("#include \"system.h\"\n");
   printf ("#include \"rtl.h\"\n");
+  printf ("#include \"tm_p.h\"\n");
   printf ("#include \"function.h\"\n");
   printf ("#include \"insn-config.h\"\n");
   printf ("#include \"recog.h\"\n");
index 1aa023398a4b4323b2c590b5c95417f8e0e46199..17bfaf4246dca1a989a9606bfd3a401dc120557d 100644 (file)
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA.  */
 #include "machmode.h"
 #include "hard-reg-set.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "basic-block.h"
 #include "regs.h"
index 87c97fb3506dcf53b9511b5c0fbfdf2d2baace87..8641f11ff2c0a2512d549b0a123527b96d86d3b7 100644 (file)
 #include "system.h"
 #include "toplev.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "basic-block.h"
 #include "regs.h"
 #include "function.h"
index e1b7990f21aee37b5345e46dec86dac31ce1ce1e..0725a94cbca35ff8f584026c9d4e10fc3afbce26 100644 (file)
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA.  */
 
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "regs.h"
 #include "flags.h"
 #include "insn-config.h"
index 13ef576397cef9e71a7ff088f5cfd964ba89f0f8..3d7a4b787f311b38796a3b74fbe2dd9601849029 100644 (file)
@@ -54,6 +54,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "hard-reg-set.h"
 #include "regs.h"
index 76c384a1604d0370cab2a57142b91433d6e5ae94..4884a499c8f91c923f931cf37d88c7bc810dad27 100644 (file)
@@ -62,6 +62,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "basic-block.h"
 #include "regs.h"
index cc278dce84844c8a20361f0ab8759ded9efd761f..32ac1752cedf37dc67ed46a6ed5099ccde09cc06 100644 (file)
@@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "obstack.h"
 #include "function.h"
 #include "expr.h"
index 455a37d65a5ecfd5e6da1d3de04064ade42420a3..a683fef77b15d226db2ad4e1861708821f413db5 100644 (file)
@@ -28,6 +28,7 @@ Boston, MA 02111-1307, USA.  */
 #include "insn-config.h"
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "insn-flags.h"
 #include "insn-codes.h"
index d163e705cfb66bbe59cc9a0bb9313d69999cd51a..6ecd15026e5e36d9f10cdc0b25a4c3c91351b7d0 100644 (file)
@@ -22,6 +22,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "insn-config.h"
 #include "insn-attr.h"
 #include "insn-flags.h"
index f1b35b82d5678b6e3e168b138dc65de20e525feb..04c2cd6001258a8d9ffe4a89a23873c103c7586f 100644 (file)
@@ -154,6 +154,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "tree.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "function.h"
 #include "insn-config.h"
 #include "regs.h"
index 1963a95a474016ffa47df85de0054904e0ef897c..d7f9b14c8579e00cd63d9769fb01ac1babc9e5e6 100644 (file)
@@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "hard-reg-set.h"
 #include "flags.h"
 #include "basic-block.h"
index e46eff2819227659348fd2ab36c0e47e533debcf..38a694c7cbc4b985194544c3fb6ccb7828931ef8 100644 (file)
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h" /* stdio.h must precede rtl.h for FFS.  */
+#include "tm_p.h"
 #include "insn-config.h"
 #include "recog.h"
 #include "output.h"
index 98345bf247ce15bd6d542f17efb9d2bd92372c97..ef263599907dba9baf1378681b90a5603fb3e92c 100644 (file)
@@ -90,6 +90,7 @@ a register with any other reload.  */
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "insn-config.h"
 #include "insn-codes.h"
 #include "recog.h"
index 57b43d92cf06e1675341dcf7fe6ec75a4a502f77..a634e8435da06af3727f7fb6abf3eaa7743c562f 100644 (file)
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA.  */
 #include "machmode.h"
 #include "hard-reg-set.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "obstack.h"
 #include "insn-config.h"
 #include "insn-flags.h"
index 433306196035721de6cce77a1842b3edb5841400..c3ca654f672145bf2a903bf71d9b16ae7a7409c6 100644 (file)
@@ -123,6 +123,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "toplev.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "expr.h"
 #include "function.h"
 #include "insn-config.h"
index 4761515fc5aad23ba8e7cf330c3d91a279552fa5..3dce3b1df40b1744c1742570bf12a1f64f572bab 100644 (file)
@@ -22,6 +22,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "toplev.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "hard-reg-set.h"
 #include "basic-block.h"
 #include "function.h"
index 5a9a25e11800079c39ecffe511c50c00f15325a2..1100733374b3c8749544fa464573d5aeac1133fb 100644 (file)
@@ -38,6 +38,7 @@ Boston, MA 02111-1307, USA.  */
 
 #include "rtl.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "except.h"
 #include "function.h"
index 9f32de43ef8d0d274852eab9723b9349daed85c8..dc4292639452b120f441eccc63ef88f679bdaa87 100644 (file)
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA.  */
 
 #include "tree.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "function.h"
 #include "expr.h"
index 9fe0e9eae798e2a360be1af1e26de01edd809621..686f35b603a8a0c2ac85ef288d46c8a4af84a8ce 100644 (file)
@@ -41,6 +41,7 @@ Boston, MA 02111-1307, USA.  */
 #include "input.h"
 #include "tree.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "flags.h"
 #include "insn-attr.h"
 #include "insn-codes.h"
index d5e19c8b992579bdf981f52ff002723ee6abe3c2..752595c46c836ff91ed00cd66d02748779244c28 100644 (file)
@@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #include "flags.h"
 #include "tree.h"
+#include "tm_p.h"
 #include "function.h"
 #include "obstack.h"
 #include "toplev.h"
index ea11acf252716a878b0526db2c2861416ad2687e..dce90b23fcf8e38aed12ea5acf087c61c592324b 100644 (file)
@@ -149,6 +149,7 @@ enum unroll_types { UNROLL_COMPLETELY, UNROLL_MODULO, UNROLL_NAIVE };
 #include "config.h"
 #include "system.h"
 #include "rtl.h"
+#include "tm_p.h"
 #include "insn-config.h"
 #include "integrate.h"
 #include "regs.h"