diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-14 15:51:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-14 15:51:45 +0000 |
commit | 4912a07c880ff94353aa9f669170e852921e3570 (patch) | |
tree | 07dba7573336a15caff6cd38ede9b21a2f7b8424 /gcc/cppinit.c | |
parent | 3dc60fc75491e4126cf8eb2f365ae505928ee8b1 (diff) | |
download | gcc-4912a07c880ff94353aa9f669170e852921e3570.zip gcc-4912a07c880ff94353aa9f669170e852921e3570.tar.gz gcc-4912a07c880ff94353aa9f669170e852921e3570.tar.bz2 |
ChangeLog: Follow spelling conventions.
* ChangeLog: Follow spelling conventions.
* ChangeLog.0: Likewise.
* ChangeLog.2: Likewise.
* ChangeLog.3: Likewise.
* ChangeLog.4: Likewise.
* ChangeLog.5: Likewise.
* ChangeLog.6: Likewise.
* cppfiles.c: Likewise.
* cppinit.c: Likewise.
* cpplib.h: Likewise.
* cse.c: Likewise.
* debug.h: Likewise.
* df.c: Likewise.
* dominance.c: Likewise.
* hashtable.c: Likewise.
* hashtable.h: Likewise.
* loop.c: Likewise.
* config/arm/README-interworking: Likewise.
* config/arm/arm.c: Likewise.
* config/arm/arm.h: Likewise.
* config/arm/arm.md: Likewise.
* config/dsp16xx/dsp16xx.h: Likewise.
* config/frv/frv.c: Likewise.
* config/frv/frv.h: Likewise.
* config/ip2k/ip2k.h: Likewise.
* config/rs6000/rs6000.c: Likewise.
* config/stormy16/stormy-abi: Likewise.
* config/stormy16/stormy16.h: Likewise.
* config/v850/v850.c: Likewise.
From-SVN: r57146
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 99dd949..e906e09 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -515,7 +515,7 @@ cpp_create_reader (lang) { cpp_reader *pfile; - /* Initialise this instance of the library if it hasn't been already. */ + /* Initialize this instance of the library if it hasn't been already. */ init_library (); pfile = (cpp_reader *) xcalloc (1, sizeof (cpp_reader)); @@ -543,7 +543,7 @@ cpp_create_reader (lang) CPP_OPTION (pfile, unsigned_char) = 0; CPP_OPTION (pfile, unsigned_wchar) = 1; - /* Initialise the line map. Start at logical line 1, so we can use + /* Initialize the line map. Start at logical line 1, so we can use a line number of zero for special states. */ init_line_maps (&pfile->line_maps); pfile->line = 1; @@ -562,7 +562,7 @@ cpp_create_reader (lang) pfile->cur_run = &pfile->base_run; pfile->cur_token = pfile->base_run.base; - /* Initialise the base context. */ + /* Initialize the base context. */ pfile->context = &pfile->base_context; pfile->base_context.macro = 0; pfile->base_context.prev = pfile->base_context.next = 0; @@ -574,7 +574,7 @@ cpp_create_reader (lang) /* The expression parser stack. */ _cpp_expand_op_stack (pfile); - /* Initialise the buffer obstack. */ + /* Initialize the buffer obstack. */ gcc_obstack_init (&pfile->buffer_ob); _cpp_init_includes (pfile); |