diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-01-18 02:26:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-18 02:26:43 +0000 |
commit | 95bd1dd72f8e33c77da74e7e6707f206784f6b15 (patch) | |
tree | 6a219732ec330734a0ab46ead554f3e3bd32ba25 /gcc/cpplib.h | |
parent | d5840e09def0a9a4efbcc31ae5bf30b9761335bd (diff) | |
download | gcc-95bd1dd72f8e33c77da74e7e6707f206784f6b15.zip gcc-95bd1dd72f8e33c77da74e7e6707f206784f6b15.tar.gz gcc-95bd1dd72f8e33c77da74e7e6707f206784f6b15.tar.bz2 |
alias.c: Fix comment typos.
* alias.c: Fix comment typos.
* basic-block.h: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-decl.c: Likewise.
* c-opts.c: Likewise.
* c-pragma.c: Likewise.
* c-pretty-print.h: Likewise.
* cfg.c: Likewise.
* cfganal.c: Likewise.
* cfgbuild.c: Likewise.
* cfgcleanup.c: Likewise.
* cfglayout.c: Likewise.
* cfgrtl.c: Likewise.
* convert.c: Likewise.
* cpphash.h: Likewise.
* cpplex.c: Likewise.
* cpplib.h: Likewise.
* df.h: Likewise.
* diagnostic.c: Likewise.
* diagnostic.h: Likewise.
* dwarf2.h: Likewise.
From-SVN: r61462
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index bccfecf..556c783 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -434,7 +434,7 @@ extern const char *progname; entries for all identifiers: either macros defined by #define commands (type NT_MACRO), assertions created with #assert (NT_ASSERTION), or neither of the above (NT_VOID). Builtin macros - like __LINE__ are flagged NODE_BUILTIN. Poisioned identifiers are + like __LINE__ are flagged NODE_BUILTIN. Poisoned identifiers are flagged NODE_POISONED. NODE_OPERATOR (C++ only) indicates an identifier that behaves like an operator such as "xor". NODE_DIAGNOSTIC is for speed in lex_token: it indicates a @@ -544,7 +544,7 @@ extern int cpp_handle_option PARAMS ((cpp_reader *, int, char **)); too. If there was an error opening the file, it returns NULL. If you want cpplib to manage its own hashtable, pass in a NULL - pointer. Otherise you should pass in an initialized hash table + pointer. Otherwise you should pass in an initialized hash table that cpplib will share; this technique is used by the C front ends. */ extern const char *cpp_read_main_file PARAMS ((cpp_reader *, const char *, @@ -654,7 +654,7 @@ extern cpp_num cpp_interpret_integer PARAMS ((cpp_reader *, const cpp_token *, others assumed clear, to fill out a cpp_num structure. */ cpp_num cpp_num_sign_extend PARAMS ((cpp_num, size_t)); -/* Diagnostic levels. To get a dianostic without associating a +/* Diagnostic levels. To get a diagnostic without associating a position in the translation unit with it, use cpp_error_with_line with a line number of zero. */ |