diff options
Diffstat (limited to 'gcc/fortran/trans-array.h')
-rw-r--r-- | gcc/fortran/trans-array.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gcc/fortran/trans-array.h b/gcc/fortran/trans-array.h index 3f8809d..9b0b830 100644 --- a/gcc/fortran/trans-array.h +++ b/gcc/fortran/trans-array.h @@ -120,13 +120,18 @@ tree gfc_conv_array_ubound (tree, int); /* Build expressions for accessing components of an array descriptor. */ tree gfc_conv_descriptor_data_get (tree); -void gfc_conv_descriptor_data_set (stmtblock_t *, tree, tree); tree gfc_conv_descriptor_data_addr (tree); -tree gfc_conv_descriptor_offset (tree); +tree gfc_conv_descriptor_offset_get (tree); tree gfc_conv_descriptor_dtype (tree); -tree gfc_conv_descriptor_stride (tree, tree); -tree gfc_conv_descriptor_lbound (tree, tree); -tree gfc_conv_descriptor_ubound (tree, tree); +tree gfc_conv_descriptor_stride_get (tree, tree); +tree gfc_conv_descriptor_lbound_get (tree, tree); +tree gfc_conv_descriptor_ubound_get (tree, tree); + +void gfc_conv_descriptor_data_set (stmtblock_t *, tree, tree); +void gfc_conv_descriptor_offset_set (stmtblock_t *, tree, tree); +void gfc_conv_descriptor_stride_set (stmtblock_t *, tree, tree, tree); +void gfc_conv_descriptor_lbound_set (stmtblock_t *, tree, tree, tree); +void gfc_conv_descriptor_ubound_set (stmtblock_t *, tree, tree, tree); /* Add pre-loop scalarization code for intrinsic functions which require special handling. */ |