]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.ac (tm_include_list): Add insn-constants.h.
authorRichard Sandiford <rdsandiford@googlemail.com>
Thu, 10 Jun 2010 20:23:43 +0000 (20:23 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Thu, 10 Jun 2010 20:23:43 +0000 (20:23 +0000)
gcc/
* configure.ac (tm_include_list): Add insn-constants.h.
* configure: Regenerate.
* Makefile.in (GTM_H): Move insn-constants.h here from...
(TM_H): ...here.
* mkconfig.sh: Remove special handling for insn-constants.h.

From-SVN: r160579

gcc/ChangeLog
gcc/Makefile.in
gcc/configure
gcc/configure.ac
gcc/mkconfig.sh

index ed3c96af190284b5763b039ae16826836784feb9..1aab743ff683cbaef0765f92e82cc64bf3c7d7e2 100644 (file)
@@ -1,3 +1,11 @@
+2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
+
+       * configure.ac (tm_include_list): Add insn-constants.h.
+       * configure: Regenerate.
+       * Makefile.in (GTM_H): Move insn-constants.h here from...
+       (TM_H): ...here.
+       * mkconfig.sh: Remove special handling for insn-constants.h.
+
 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
 
        * Makefile.in (BUILD_RTL): Move build/read-md.o to...
index bdafaa55ca28a55bf16cab579cf305219cd7e751..1a543bf18bdba5fabd04d9d8c1efecdd0e9c9a26 100644 (file)
@@ -816,8 +816,8 @@ BCONFIG_H = bconfig.h $(build_xm_file_list)
 CONFIG_H  = config.h  $(host_xm_file_list)
 TCONFIG_H = tconfig.h $(xm_file_list)
 TM_P_H    = tm_p.h    $(tm_p_file_list)
-GTM_H     = tm.h      $(tm_file_list)
-TM_H      = $(GTM_H) insn-constants.h insn-flags.h options.h
+GTM_H     = tm.h      $(tm_file_list) insn-constants.h
+TM_H      = $(GTM_H) insn-flags.h options.h
 
 # Variables for version information.
 BASEVER     := $(srcdir)/BASE-VER  # 4.x.y
index 33aa2cf5601e141c4c85cc7687a212d15f6f28a1..50baf170e19df9c759b076be15184f99326a224e 100755 (executable)
@@ -10823,7 +10823,7 @@ tmake_file="${tmake_file_}"
 out_object_file=`basename $out_file .c`.o
 
 tm_file_list="options.h"
-tm_include_list="options.h"
+tm_include_list="options.h insn-constants.h"
 for f in $tm_file; do
   case $f in
     ./* )
index 7b1b72eed3b9fca50ddff4cb65cb5e15267dafe2..d8276985b0de0ef79257bc24fe6495d5fb582c6c 100644 (file)
@@ -1643,7 +1643,7 @@ tmake_file="${tmake_file_}"
 out_object_file=`basename $out_file .c`.o
 
 tm_file_list="options.h"
-tm_include_list="options.h"
+tm_include_list="options.h insn-constants.h"
 for f in $tm_file; do
   case $f in
     ./* )
index c9d35cce2a629341c7003adfedc811e2afe726c0..cfa5a56467ea9feea1ac331cdf9103ff7a652659 100644 (file)
@@ -87,15 +87,14 @@ if [ -n "$HEADERS" ]; then
     fi
 fi
 
-# If this is tm.h, now include insn-constants.h and insn-flags.h only
-# if IN_GCC is defined but neither GENERATOR_FILE nor USED_FOR_TARGET
-# is defined.  (Much of this is temporary.)
+# If this is tm.h, now include insn-flags.h only if IN_GCC is defined
+# but neither GENERATOR_FILE nor USED_FOR_TARGET is defined.  (Much of
+# this is temporary.)
 
 case $output in
     tm.h )
         cat >> ${output}T <<EOF
 #if defined IN_GCC && !defined GENERATOR_FILE && !defined USED_FOR_TARGET
-# include "insn-constants.h"
 # include "insn-flags.h"
 #endif
 EOF