diff options
Diffstat (limited to 'gcc/fortran/trans-array.c')
-rw-r--r-- | gcc/fortran/trans-array.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index 08ce144..8b13e67 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -5009,7 +5009,7 @@ gfc_duplicate_allocatable(tree dest, tree src, tree type, int rank) tree null_data; stmtblock_t block; - /* If the source is null, set the destination to null. */ + /* If the source is null, set the destination to null. */ gfc_init_block (&block); gfc_conv_descriptor_data_set (&block, dest, null_pointer_node); null_data = gfc_finish_block (&block); @@ -5126,7 +5126,7 @@ structure_alloc_comps (gfc_symbol * der_type, tree decl, gfc_add_expr_to_block (&loopbody, tmp); - /* Build the loop and return. */ + /* Build the loop and return. */ gfc_init_loopinfo (&loop); loop.dimen = 1; loop.from[0] = gfc_index_zero_node; @@ -5143,7 +5143,7 @@ structure_alloc_comps (gfc_symbol * der_type, tree decl, } /* Otherwise, act on the components or recursively call self to - act on a chain of components. */ + act on a chain of components. */ for (c = der_type->components; c; c = c->next) { bool cmp_has_alloc_comps = (c->ts.type == BT_DERIVED) |