diff options
| author | Kazu Hirata <kazu@codesourcery.com> | 2006-05-28 18:03:28 +0000 |
|---|---|---|
| committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-05-28 18:03:28 +0000 |
| commit | ce2e12c27eebde4eedb1b95f69cda8662bf9ee3d (patch) | |
| tree | 476907f2cf934fdc4751893878c1d3f0fa3b64c3 /gcc/ada/utils.c | |
| parent | e2ae1407d3a0429fada6ff23f38ebf96bd62bd73 (diff) | |
| download | gcc-ce2e12c27eebde4eedb1b95f69cda8662bf9ee3d.zip gcc-ce2e12c27eebde4eedb1b95f69cda8662bf9ee3d.tar.gz gcc-ce2e12c27eebde4eedb1b95f69cda8662bf9ee3d.tar.bz2 | |
decl.c, [...]: Fix comment typos.
* 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.
From-SVN: r114171
Diffstat (limited to 'gcc/ada/utils.c')
| -rw-r--r-- | gcc/ada/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/utils.c b/gcc/ada/utils.c index a3fdb0d..1bdfacf0 100644 --- a/gcc/ada/utils.c +++ b/gcc/ada/utils.c @@ -186,7 +186,7 @@ present_gnu_tree (Entity_Id gnat_entity) } -/* Return non-zero if we are currently in the global binding level. */ +/* Return nonzero if we are currently in the global binding level. */ int global_bindings_p (void) @@ -2874,7 +2874,7 @@ convert (tree type, tree expr) case VIEW_CONVERT_EXPR: { /* GCC 4.x is very sensitive to type consistency overall, and view - conversions thus are very frequent. Eventhough just "convert"ing + conversions thus are very frequent. Even though just "convert"ing the inner operand to the output type is fine in most cases, it might expose unexpected input/output type mismatches in special circumstances so we avoid such recursive calls when we can. */ @@ -2882,7 +2882,7 @@ convert (tree type, tree expr) tree op0 = TREE_OPERAND (expr, 0); /* If we are converting back to the original type, we can just - lift the input conversion. This is a common occurence with + lift the input conversion. This is a common occurrence with switches back-and-forth amongst type variants. */ if (type == TREE_TYPE (op0)) return op0; |
