diff options
Diffstat (limited to 'gcc/fortran/trans.h')
-rw-r--r-- | gcc/fortran/trans.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index e571df9d3a9..4955fe48c49 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -67,6 +67,10 @@ typedef struct gfc_se /* Ignore absent optional arguments. Used for some intrinsics. */ unsigned ignore_optional:1; + /* When this is set the data and offset fields of the returned descriptor + are NULL. Used by intrinsic size. */ + unsigned data_not_needed:1; + /* Scalarization parameters. */ struct gfc_se *parent; struct gfc_ss *ss; |