diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-18 02:26:43 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-18 02:26:43 +0000 |
commit | d716ce7550da0dcd99ca4759fdfcdcef7793c0f6 (patch) | |
tree | 6a219732ec330734a0ab46ead554f3e3bd32ba25 /gcc/cpplib.h | |
parent | 36b12ba76e5aff7b2fe792d1c739016e4bd71a4c (diff) | |
download | ppe42-gcc-d716ce7550da0dcd99ca4759fdfcdcef7793c0f6.tar.gz ppe42-gcc-d716ce7550da0dcd99ca4759fdfcdcef7793c0f6.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61462 138bc75d-0d04-0410-961f-82ee72b054a4
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 bccfecf86be..556c78381f3 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. */ |