diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-24 01:46:50 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-24 01:46:50 +0000 |
commit | 4b0e3ddbeb96565d30bcfe84d8a8d6741cb0c22a (patch) | |
tree | 9e15c70e8b7b61e320adae5771b7d38402e74202 /gcc/configure.in | |
parent | 5fc6d49c82e0849683f0a0af3c2dee9c7d1ab449 (diff) | |
download | gcc-4b0e3ddbeb96565d30bcfe84d8a8d6741cb0c22a.tar.gz |
* ChangeLog (configure.in): Don't include ansidecl.h in tconfig.h.
* gcov-io.h (PARAMS, ATTRIBUTE_UNUSED: Define if IN_LIBGCC2.
* unwind-dw2-fde.h (last_fde): Use __attribute__, not
ATTRIBUTE_UNUSED.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61692 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index 43a7974f37d..77f7b00ebdf 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -1036,7 +1036,8 @@ tm_file="${tm_file} defaults.h" tm_p_file="${tm_p_file} tm-preds.h" host_xm_file="auto-host.h ansidecl.h ${host_xm_file}" build_xm_file="${build_auto} ansidecl.h ${build_xm_file}" -xm_file="ansidecl.h ${xm_file}" +# We don't want ansidecl.h in target files, write code there in ISO/GNU C. +#xm_file="ansidecl.h ${xm_file}" # Truncate the target if necessary if test x$host_truncate_target != x; then |