diff options
author | Feng Wang <fengwang@nudt.edu.cn> | 2005-03-15 02:52:38 +0000 |
---|---|---|
committer | Feng Wang <fengwang@gcc.gnu.org> | 2005-03-15 02:52:38 +0000 |
commit | ce2df7c64ae0185dab22bb38628acf8ae48551b7 (patch) | |
tree | 9d626c10efe2ea1ff72bf8bd94fa123c776b3dad /gcc/fortran/trans.h | |
parent | 08091139067ee2565a3ad248bd0113e521a425ee (diff) | |
download | gcc-ce2df7c64ae0185dab22bb38628acf8ae48551b7.zip gcc-ce2df7c64ae0185dab22bb38628acf8ae48551b7.tar.gz gcc-ce2df7c64ae0185dab22bb38628acf8ae48551b7.tar.bz2 |
re PR fortran/18827 (ICE on assign to common variable)
fortran/
2005-03-15 Feng Wang <fengwang@nudt.edu.cn>
PR fortran/18827
* io.c (resolve_tag): Add checking on assigned label.
(match_dt_format): Does not set symbol assign attribute.
* match.c (gfc_match_goto):Does not set symbol assign attribute.
* resolve.c (resolve_code): Add checking on assigned label.
* trans-common.c (build_field): Deals with common variable assigned
a label.
* trans-stmt.c (gfc_conv_label_variable): New function.
(gfc_trans_label_assign): Use it.
(gfc_trans_goto): Ditto.
* trans-io.c (set_string): Ditto.
* trans.h (gfc_conv_label_variable): Add prototype.
testsuite/
2005-03-15 Feng Wang <fengwang@nudt.edu.cn>
PR fortran/18827
* gfortran.dg/assign_2.f90: New test.
* gfortran.dg/assign_3.f90: New test.
* gfortran.dg/assign.f90: New test.
From-SVN: r96467
Diffstat (limited to 'gcc/fortran/trans.h')
-rw-r--r-- | gcc/fortran/trans.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index aad878f..712c530 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -289,6 +289,8 @@ void gfc_conv_expr_lhs (gfc_se * se, gfc_expr * expr); void gfc_conv_expr_reference (gfc_se * se, gfc_expr *); /* Equivalent to convert(type, gfc_conv_expr_val(se, expr)). */ void gfc_conv_expr_type (gfc_se * se, gfc_expr *, tree); +/* Find the decl containing the auxiliary variables for assigned variables. */ +void gfc_conv_label_variable (gfc_se * se, gfc_expr * expr); /* If the value is not constant, Create a temporary and copy the value. */ tree gfc_evaluate_now (tree, stmtblock_t *); |