diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-09 06:03:16 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-09 06:03:16 +0000 |
commit | 20dd417af30c7acc30f73bad9adf49073e48e6af (patch) | |
tree | 5f5de869671afe0860dba99e31812a0a95a46c55 /gcc/collect2.c | |
parent | a26c43b2bf728f8eb14bd1f711e535a1fba3f484 (diff) | |
download | gcc-20dd417af30c7acc30f73bad9adf49073e48e6af.tar.gz |
* c-common.c: Fix comment typos.
* cfgrtl.c: Likewise.
* collect2.c: Likewise.
* cpplex.c: Likewise.
* doloop.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* global.c: Likewise.
* ifcvt.c: Likewise.
* loop.c: Likewise.
* optabs.c: Likewise.
* protoize.c: Likewise.
* regclass.c: Likewise.
* reorg.c: Likewise.
* rtl.h: Likewise.
* stmt.c: Likewise.
* tree.h: Likewise.
* doc/cpp.texi: Likewise.
* doc/c-tree.texi: Likewise.
* doc/extend.texi: Likewise.
* doc/invoke.texi: Likewise.
* doc/objc.texi: Likewise.
* doc/tm.texi: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46114 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/collect2.c')
-rw-r--r-- | gcc/collect2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/collect2.c b/gcc/collect2.c index 7b5078cf1f3..297f769a6fd 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -2321,7 +2321,7 @@ libcompare (d1, d2) /* It has a valid numeric extension, prefer this one. */ if (*e1 == '.' && e1[1] && ISDIGIT (e1[1])) return 1; - /* It has a invalid numeric extension, must prefer the other one. */ + /* It has an invalid numeric extension, must prefer the other one. */ else return -1; } @@ -2330,7 +2330,7 @@ libcompare (d1, d2) /* It has a valid numeric extension, prefer this one. */ if (*e2 == '.' && e2[1] && ISDIGIT (e2[1])) return -1; - /* It has a invalid numeric extension, must prefer the other one. */ + /* It has an invalid numeric extension, must prefer the other one. */ else return 1; } |