diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-29 23:01:45 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-29 23:01:45 +0000 |
commit | 684d9f3beb4507eb033348dd207c3955626a0bbe (patch) | |
tree | a0825327a8a0624c678d9454f1795c441d7adff8 /gcc/c-common.h | |
parent | affd4f3309d3ae078f95268e18b44293e096c9b9 (diff) | |
download | gcc-684d9f3beb4507eb033348dd207c3955626a0bbe.tar.gz |
ChangeLog.2, [...]: Fix spelling errors and typos.
* ChangeLog.2, ChangeLog.3, ChangeLog.4, FSFChangeLog.10,
FSFChangeLog.11, c-common.c, c-common.def, c-common.h, c-decl.c,
c-dump.c, c-typeck.c, except.c, sdbout.c, simplify-rtx.c,
timevar.h, tree.h, varasm.c: Fix spelling errors and typos.
From-SVN: r46621
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 421eaa4f934..459976d9019 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -459,7 +459,7 @@ extern int warn_long_long; /* Return the qualifiers that apply to this type. In C++, that means descending through array types. Note that this macro evaluates its - arguments mor than once. */ + arguments more than once. */ #define C_TYPE_QUALS(TYPE) \ (TYPE_QUALS ((TREE_CODE (TYPE) == ARRAY_TYPE \ && c_language == clk_cplusplus) \ @@ -557,7 +557,7 @@ extern tree strip_array_types PARAMS ((tree)); /* IF_STMT accessors. These give access to the condition of the if statement, the then block of the if statement, and the else block - of the if stsatement if it exists. */ + of the if statement if it exists. */ #define IF_COND(NODE) TREE_OPERAND (IF_STMT_CHECK (NODE), 0) #define THEN_CLAUSE(NODE) TREE_OPERAND (IF_STMT_CHECK (NODE), 1) #define ELSE_CLAUSE(NODE) TREE_OPERAND (IF_STMT_CHECK (NODE), 2) @@ -605,8 +605,8 @@ extern tree strip_array_types PARAMS ((tree)); #define GOTO_DESTINATION(NODE) TREE_OPERAND (GOTO_STMT_CHECK (NODE), 0) /* COMPOUND_STMT accessor. This gives access to the TREE_LIST of - statements assocated with a compound statement. The result is the - first statement in the list. Succeeding nodes can be acccessed by + statements associated with a compound statement. The result is the + first statement in the list. Succeeding nodes can be accessed by calling TREE_CHAIN on a node in the list. */ #define COMPOUND_BODY(NODE) TREE_OPERAND (COMPOUND_STMT_CHECK (NODE), 0) @@ -823,7 +823,7 @@ extern int c_unsafe_for_reeval PARAMS ((tree)); enum tree_dump_index { TDI_all, /* dump the whole translation unit */ - TDI_class, /* dump class heirarchy */ + TDI_class, /* dump class hierarchy */ TDI_original, /* dump each function before optimizing it */ TDI_optimized, /* dump each function after optimizing it */ TDI_inlined, /* dump each function after inlining |