diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-28 18:03:28 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-28 18:03:28 +0000 |
commit | 3c8148a687c7bd5c0c1d4ba4ceef949bd1e39e62 (patch) | |
tree | 476907f2cf934fdc4751893878c1d3f0fa3b64c3 /gcc/ada/decl.c | |
parent | 8e2caf1e9b8eddf26f80b9d7ce8bb93151982deb (diff) | |
download | gcc-3c8148a687c7bd5c0c1d4ba4ceef949bd1e39e62.tar.gz |
* decl.c, env.c, gigi.h, init.c, initialize.c, raise-gcc.c,
sem_ch13.adb, sysdep.c, targtyps.c, tb-alvxw.c, tracebak.c,
trans.c, utils.c: Fix comment typos. Follow spelling
conventions.
* gnat_rm.texi, gnat_ugn.texi, : Fix typos. Follow spelling
conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114171 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/decl.c')
-rw-r--r-- | gcc/ada/decl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/decl.c b/gcc/ada/decl.c index 2144ff20802..6a8f23424c5 100644 --- a/gcc/ada/decl.c +++ b/gcc/ada/decl.c @@ -134,7 +134,7 @@ gnat_to_gnu_type (Entity_Id gnat_entity) DEFINITION is nonzero if this call is intended for a definition. This is used for separate compilation where it necessary to know whether an external declaration or a definition should be created if the GCC equivalent - was not created previously. The value of 1 is normally used for a non-zero + was not created previously. The value of 1 is normally used for a nonzero DEFINITION, but a value of 2 is used in special circumstances, defined in the code. */ @@ -4719,7 +4719,7 @@ elaborate_expression (Node_Id gnat_expr, Entity_Id gnat_entity, if (present_gnu_tree (gnat_expr)) return get_gnu_tree (gnat_expr); - /* If we don't need a value and this is static or a discriment, we + /* If we don't need a value and this is static or a discriminant, we don't need to do anything. */ else if (!need_value && (Is_OK_Static_Expression (gnat_expr) @@ -5254,7 +5254,7 @@ gnat_to_gnu_field (Entity_Id gnat_field, tree gnu_record_type, int packed, this a bitfield and avoid making things wider. Doing this is first useful if the record is packed because we can then - place the field at a non-byte-aligned position and so achieve tigther + place the field at a non-byte-aligned position and so achieve tighter packing. This is in addition *required* if the field shares a byte with another |