diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-07-05 12:46:52 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-07-05 12:46:52 +0000 |
commit | 989ea525bec01e16c29b69bf5194310c551d9c34 (patch) | |
tree | 5666dfc48fb2cc1c04e55452418033ee9e2438bd /gcc/fortran/trans.h | |
parent | 7ec6356e22e1644f3fee6314790b2680098778de (diff) | |
download | gcc-989ea525bec01e16c29b69bf5194310c551d9c34.zip gcc-989ea525bec01e16c29b69bf5194310c551d9c34.tar.gz gcc-989ea525bec01e16c29b69bf5194310c551d9c34.tar.bz2 |
vec.h (VEC_splice, [...]): New macros.
gcc/
* vec.h (VEC_splice, VEC_safe_splice): New macros. Add function
implementations.
gcc/fortran/
* trans.h (gfc_conv_procedure_call): Take a VEC instead of a tree.
* trans-intrinsic.c (gfc_conv_intrinsic_funcall): Adjust for new
type of gfc_conv_procedure_call.
(conv_generic_with_optional_char_arg): Likewise.
* trans-stmt.c (gfc_trans_call): Likewise.
* trans-expr.c (gfc_conv_function_expr): Likewise.
(gfc_conv_procedure_call): Use build_call_vec instead of
build_call_list.
From-SVN: r161834
Diffstat (limited to 'gcc/fortran/trans.h')
-rw-r--r-- | gcc/fortran/trans.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index 02361fc..fa2d583 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -314,7 +314,7 @@ int gfc_is_intrinsic_libcall (gfc_expr *); /* Used to call ordinary functions/subroutines and procedure pointer components. */ int gfc_conv_procedure_call (gfc_se *, gfc_symbol *, gfc_actual_arglist *, - gfc_expr *, tree); + gfc_expr *, VEC(tree,gc) *); void gfc_conv_subref_array_arg (gfc_se *, gfc_expr *, int, sym_intent, bool); |