aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-07-05 15:39:59 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-07-05 15:39:59 +0000
commit39e3f58cbc14b15c3e0486295ef9d002a3253a51 (patch)
treefbf9b3021b6e7115e83a169995b250ec07bcd06f
parent4d6922ee327a1a5c4a6bbf974186a34355464df9 (diff)
downloadgcc-39e3f58cbc14b15c3e0486295ef9d002a3253a51.zip
gcc-39e3f58cbc14b15c3e0486295ef9d002a3253a51.tar.gz
gcc-39e3f58cbc14b15c3e0486295ef9d002a3253a51.tar.bz2
ggc.h: Follow spelling conventions.
* ggc.h: Follow spelling conventions. * config/i386/i386.c: Likewise. * config/i386/winnt.c: Likewise. * config/rs6000/rs6000.c: Likewise. From-SVN: r68976
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/i386/i386.c2
-rw-r--r--gcc/config/i386/winnt.c2
-rw-r--r--gcc/config/rs6000/rs6000.c2
-rw-r--r--gcc/ggc.h2
5 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a1e1227..a8630de 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,12 @@
2003-07-05 Kazu Hirata <kazu@cs.umass.edu>
+ * ggc.h: Follow spelling conventions.
+ * config/i386/i386.c: Likewise.
+ * config/i386/winnt.c: Likewise.
+ * config/rs6000/rs6000.c: Likewise.
+
+2003-07-05 Kazu Hirata <kazu@cs.umass.edu>
+
* bt-load.c: Fix comment typos.
* c-incpath.c: Likewise.
* cfg.c: Likewise.
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 3959a23..902e924 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -11525,7 +11525,7 @@ ix86_expand_strlen (out, src, eoschar, align)
scratch = scratch register, initialized with the startaddress when
not aligned, otherwise undefined
- This is just the body. It needs the initialisations mentioned above and
+ This is just the body. It needs the initializations mentioned above and
some address computing at the end. These things are done in i386.md. */
static void
diff --git a/gcc/config/i386/winnt.c b/gcc/config/i386/winnt.c
index 9c5763c..ad08603 100644
--- a/gcc/config/i386/winnt.c
+++ b/gcc/config/i386/winnt.c
@@ -260,7 +260,7 @@ i386_pe_dllimport_p (decl)
}
/* We ignore the dllimport attribute for inline member functions.
- This differs from MSVC behaviour which treats it like GNUC
+ This differs from MSVC behavior which treats it like GNUC
'extern inline' extension. */
else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
{
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 40748c9..13f3fc3 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -12619,7 +12619,7 @@ output_toc (file, x, labelno, mode)
void * * found;
/* Create toc_hash_table. This can't be done at OVERRIDE_OPTIONS
- time because GGC is not initialised at that point. */
+ time because GGC is not initialized at that point. */
if (toc_hash_table == NULL)
toc_hash_table = htab_create_ggc (1021, toc_hash_function,
toc_hash_eq, NULL);
diff --git a/gcc/ggc.h b/gcc/ggc.h
index e2a76e5..26bb22b 100644
--- a/gcc/ggc.h
+++ b/gcc/ggc.h
@@ -132,7 +132,7 @@ extern void gt_pch_p_S (void *, void *, gt_pointer_operator, void *);
extern void gt_pch_n_S (const void *);
extern void gt_ggc_m_S (void *);
-/* Initialise the string pool. */
+/* Initialize the string pool. */
extern void init_stringpool (void);
/* A GC implementation must provide these functions. They are internal