This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
I wonder if it would not be better to do the conformance checking in trans-intrinsic.c(gfc_conv_intrinsic_function_call) itself; or in a subsidiary function?FX and I briefly discussed this. I think we want two functions. In iresolve.c, we would have code of the form
gfc_resolve_reshape(....) {
if (boundscheck) {
Set up _gfortran_reshape_checking. } else {
Use current unchanged code _gfortran_reshape
}
}
The idea is that if the frontend needs to give the *_checking routines additional info, we can do it like I did for rrspacing and spacing.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |