diff options
Diffstat (limited to 'gcc/fortran/trans-common.c')
-rw-r--r-- | gcc/fortran/trans-common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/trans-common.c b/gcc/fortran/trans-common.c index 3f83d2e..38e813e 100644 --- a/gcc/fortran/trans-common.c +++ b/gcc/fortran/trans-common.c @@ -23,7 +23,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA way to build UNION_TYPE is borrowed from Richard Henderson. Transform common blocks. An integral part of this is processing - equvalence variables. Equivalenced variables that are not in a + equivalence variables. Equivalenced variables that are not in a common block end up in a private block of their own. Each common block or local equivalence list is declared as a union. @@ -400,7 +400,7 @@ create_common (gfc_common_head *com) if (s->offset < offset) { /* We have overlapping initializers. It could either be - partially initilalized arrays (legal), or the user + partially initialized arrays (legal), or the user specified multiple initial values (illegal). We don't implement this yet, so bail out. */ gfc_todo_error ("Initialization of overlapping variables"); @@ -743,7 +743,7 @@ finish_equivalences (gfc_namespace *ns) sym = z->expr->symtree->n.sym; current_segment = get_segment_info (sym, 0); - /* All objects directly or indrectly equivalenced with this symbol. */ + /* All objects directly or indirectly equivalenced with this symbol. */ add_equivalences (); /* Calculate the minimal offset. */ |