diff options
author | James E Wilson <wilson@specifixinc.com> | 2004-09-11 03:52:22 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2004-09-10 20:52:22 -0700 |
commit | 1c8c309bab54bdc7c551b31922051c68066d9bd4 (patch) | |
tree | f7389bc2848751c4d05b844f6b7c3603034a3eec /gcc | |
parent | 273d67e73b87d063b8f10ba5a562d151a3a480dd (diff) | |
download | gcc-1c8c309bab54bdc7c551b31922051c68066d9bd4.zip gcc-1c8c309bab54bdc7c551b31922051c68066d9bd4.tar.gz gcc-1c8c309bab54bdc7c551b31922051c68066d9bd4.tar.bz2 |
Fix typos.
* Makefile.in (LIBGCC_DEPS): Delete duplicate stmp-int-hdrs reference.
(stmp-fixproto): Change stmp-int-headers to stmp-int-hdrs in comment.
From-SVN: r87341
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4946ec4..2bf7779 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -10,6 +10,9 @@ 2004-09-10 James E Wilson <wilson@specifixinc.com> + * Makefile.in (LIBGCC_DEPS): Delete duplicate stmp-int-hdrs reference. + (stmp-fixproto): Change stmp-int-headers to stmp-int-hdrs in comment. + * convert.c (convert_to_vector): Replace recursive call with error_mark_node. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 3421dba..96a9758 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1240,7 +1240,7 @@ libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext # All the things that might cause us to want to recompile bits of libgcc. LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES) stmp-int-hdrs $(STMP_FIXPROTO) \ libgcc.mk $(srcdir)/libgcc2.c $(srcdir)/libgcov.c $(TCONFIG_H) \ - $(MACHMODE_H) longlong.h gbl-ctors.h config.status stmp-int-hdrs \ + $(MACHMODE_H) longlong.h gbl-ctors.h config.status \ tsystem.h $(FPBIT) $(DPBIT) $(TPBIT) $(LIB2ADD) \ $(LIB2ADD_ST) $(LIB2ADDEH) $(LIB2ADDEHDEP) $(EXTRA_PARTS) \ $(srcdir)/config/$(LIB1ASMSRC) \ @@ -2880,7 +2880,7 @@ fixhdr.ready: fix-header$(build_exeext) $(STAMP) fixhdr.ready; \ fi -# stmp-int-headers is to make sure fixincludes has already finished. +# stmp-int-hdrs is to make sure fixincludes has already finished. # The if statement is so that we don't run fixproto a second time # if it has already been run on the files in `include'. stmp-fixproto: fixhdr.ready fixproto stmp-int-hdrs |