summaryrefslogtreecommitdiff
path: root/gcc/mkconfig.sh
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-10 20:23:43 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-10 20:23:43 +0000
commitc50b68d29a6805c41a9c74749626756bb4f87733 (patch)
tree3e530d0afa85222eefe19900c8f9fe1f08848c94 /gcc/mkconfig.sh
parent664c5888764faa174b1b21c3b23b3f575bfc1355 (diff)
downloadgcc-c50b68d29a6805c41a9c74749626756bb4f87733.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160579 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mkconfig.sh')
-rw-r--r--gcc/mkconfig.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
index c9d35cce2a6..cfa5a56467e 100644
--- a/gcc/mkconfig.sh
+++ b/gcc/mkconfig.sh
@@ -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