aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@gcc.gnu.org>2001-10-29 23:01:45 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-10-29 23:01:45 +0000
commit684d9f3beb4507eb033348dd207c3955626a0bbe (patch)
treea0825327a8a0624c678d9454f1795c441d7adff8 /gcc/c-common.c
parentaffd4f3309d3ae078f95268e18b44293e096c9b9 (diff)
downloadgcc-684d9f3beb4507eb033348dd207c3955626a0bbe.zip
gcc-684d9f3beb4507eb033348dd207c3955626a0bbe.tar.gz
gcc-684d9f3beb4507eb033348dd207c3955626a0bbe.tar.bz2
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.c')
-rw-r--r--gcc/c-common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index e70fee2..a423d53 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -157,12 +157,12 @@ cpp_reader *parse_in; /* Declared in c-lex.h. */
tree void_list_node;
- The lazily created VAR_DECLS for __FUNCTION__, __PRETTY_FUNCTION__,
+ The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
VAR_DECLS, but C++ does.)
tree function_name_decl_node;
- tree pretty_function_name_declnode;
+ tree pretty_function_name_decl_node;
tree c99_function_name_decl_node;
Stack of nested function name VAR_DECLs.
@@ -924,7 +924,7 @@ warn_for_collisions (list)
}
}
-/* Return nonzero if X is a tree that can be verified by the sequence poitn
+/* Return nonzero if X is a tree that can be verified by the sequence point
warnings. */
static int
warning_candidate_p (x)
@@ -2201,7 +2201,7 @@ c_common_get_alias_set (t)
Technically, this approach is actually more conservative that
it needs to be. In particular, `const int *' and `int *'
- chould be in different alias sets, according to the C and C++
+ should be in different alias sets, according to the C and C++
standard, since their types are not the same, and so,
technically, an `int **' and `const int **' cannot point at
the same thing.