diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-04-30 16:27:30 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-04-30 16:27:30 +0000 |
commit | 1ae58c30e27a46925523033fe3f5aa20f7b6b4d0 (patch) | |
tree | 5061220e8209778aa37f21016395d5b6b6291a31 /gcc/cppfiles.c | |
parent | a692ad2ece994e2e1cd8dbe06fb7efda4098cbec (diff) | |
download | gcc-1ae58c30e27a46925523033fe3f5aa20f7b6b4d0.zip gcc-1ae58c30e27a46925523033fe3f5aa20f7b6b4d0.tar.gz gcc-1ae58c30e27a46925523033fe3f5aa20f7b6b4d0.tar.bz2 |
bb-reorder.c, [...]: Fix comment typos.
* bb-reorder.c, c-opts.c, cfglayout.c, cgraph.c, cgraphunit.c,
cppfiles.c, fold-const.c, ggc-zone.c, loop-doloop.c, optabs.c,
reg-stack.c, varasm.c, config/alpha/ev4.md,
config/alpha/ev5.md, config/alpha/ev6.md, config/arm/arm.c,
config/c4x/c4x.c, config/c4x/c4x.md, config/cris/cris.c,
config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.c,
config/frv/frv.h, config/frv/frv.md, config/h8300/h8300.c,
config/i386/i386.c, config/i386/i386.md, config/i386/winnt.c,
config/ia64/itanium2.md, config/ip2k/ip2k.c,
config/mips/mips.c, config/mips/mips.h, config/mips/sr71k.md,
config/pa/pa.c, config/s390/s390.c, config/sh/sh.c: Fix
comment typos.
From-SVN: r81345
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index bdfaa3f..41657ce 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -382,7 +382,7 @@ _cpp_find_failed (_cpp_file *file) /* Given a filename FNAME search for such a file in the include path starting from START_DIR. If FNAME is the empty string it is - interpreted as STDIN if START_DIR is PFILE->no_seach_path. + interpreted as STDIN if START_DIR is PFILE->no_search_path. If the file is not found in the file cache fall back to the O/S and add the result to our cache. @@ -1342,7 +1342,7 @@ cpp_get_prev (cpp_buffer *b) return b->prev; } -/* This datastructure holds the list of header files that were seen +/* This data structure holds the list of header files that were seen while the PCH was being built. The 'entries' field is kept sorted in memcmp() order; yes, this means that on little-endian systems, it's sorted initially by the least-significant byte of 'size', but |