Commit 3e90ac4e by Brooks Moses Committed by Brooks Moses

* trans-array.c (gfc_conv_expr_descriptor): Edit comment.

From-SVN: r125159
parent 8119b4e4
2007-05-28 Brooks Moses <brooks.moses@codesourcery.com>
* trans-array.c (gfc_conv_expr_descriptor): Edit comment.
2007-05-28 Brooks Moses <brooks.moses@codesourcery.com>
PR fortran/31972
* target-memory.c (gfc_target_expr_size): Add handling
for size of BT_HOLLERITH variables.
......
......@@ -4314,16 +4314,16 @@ gfc_trans_dummy_array_bias (gfc_symbol * sym, tree tmpdesc, tree body)
This function is also used for array pointer assignments, and there
are three cases:
- want_pointer && !se->direct_byref
- se->want_pointer && !se->direct_byref
EXPR is an actual argument. On exit, se->expr contains a
pointer to the array descriptor.
- !want_pointer && !se->direct_byref
- !se->want_pointer && !se->direct_byref
EXPR is an actual argument to an intrinsic function or the
left-hand side of a pointer assignment. On exit, se->expr
contains the descriptor for EXPR.
- !want_pointer && se->direct_byref
- !se->want_pointer && se->direct_byref
EXPR is the right-hand side of a pointer assignment and
se->expr is the descriptor for the previously-evaluated
left-hand side. The function creates an assignment from
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment