aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/gfortran.h
diff options
context:
space:
mode:
authorDaniel Kraft <d@domob.eu>2010-09-03 10:01:51 +0200
committerDaniel Kraft <domob@gcc.gnu.org>2010-09-03 10:01:51 +0200
commite5ca969363516ec05db3357c22079d7fdcd70ccf (patch)
treeab6ea012d837fff217565926dab37412151bd71e /gcc/fortran/gfortran.h
parente97e08bc2e561f285dab48468b5fa0cba6a48d88 (diff)
downloadgcc-e5ca969363516ec05db3357c22079d7fdcd70ccf.zip
gcc-e5ca969363516ec05db3357c22079d7fdcd70ccf.tar.gz
gcc-e5ca969363516ec05db3357c22079d7fdcd70ccf.tar.bz2
re PR fortran/44602 ([F2008] EXIT: Jump to end of construct)
2010-09-03 Daniel Kraft <d@domob.eu> PR fortran/44602 * gfortran.h (struct gfc_code): Renamed `whichloop' to `which_construct' as this is no longer restricted to loops. * parse.h (struct gfc_state_data): New field `construct'. * match.c (match_exit_cycle): Handle EXIT from non-loops. * parse.c (push_state): Set `construct' field. * resolve.c (resolve_select_type): Extend comment. * trans-stmt.c (gfc_trans_if): Add exit label. (gfc_trans_block_construct), (gfc_trans_select): Ditto. (gfc_trans_simple_do): Store exit/cycle labels on the gfc_code itself. (gfc_trans_do), (gfc_trans_do_while): Ditto. (gfc_trans_exit): Use new name `which_construct' instead of `whichloop'. (gfc_trans_cycle): Ditto. (gfc_trans_if_1): Use fold_build3_loc instead of fold_build3. 2010-09-03 Daniel Kraft <d@domob.eu> PR fortran/44602 * gfortran.dg/exit_2.f08; Adapt error messages. * gfortran.dg/exit_3.f08: New test. * gfortran.dg/exit_4.f08: New test. * gfortran.dg/exit_5.f03: New test. From-SVN: r163798
Diffstat (limited to 'gcc/fortran/gfortran.h')
-rw-r--r--gcc/fortran/gfortran.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h
index b23c647..3c15521 100644
--- a/gcc/fortran/gfortran.h
+++ b/gcc/fortran/gfortran.h
@@ -2096,7 +2096,7 @@ typedef struct gfc_code
gfc_wait *wait;
gfc_dt *dt;
gfc_forall_iterator *forall_iterator;
- struct gfc_code *whichloop;
+ struct gfc_code *which_construct;
int stop_code;
gfc_entry_list *entry;
gfc_omp_clauses *omp_clauses;
@@ -2106,7 +2106,7 @@ typedef struct gfc_code
}
ext; /* Points to additional structures required by statement */
- /* Cycle and break labels in do loops. */
+ /* Cycle and break labels in constructs. */
tree cycle_label;
tree exit_label;
}