This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Re: [gfortran,patch] Fix multiple evaluation of arg for REPEAT intrinsic


OK with some minor fixes.


+ arglist = gfc_chainon_list (arglist, TREE_VALUE(args)); + arglist = gfc_chainon_list (arglist, TREE_VALUE(TREE_CHAIN(args)));

You're missing whitespace. These should be

+ arglist = gfc_chainon_list (arglist, TREE_VALUE (args));
+ arglist = gfc_chainon_list (arglist, TREE_VALUE (TREE_CHAIN (args)));

Thanks for the review. Commited on mainline as rev. 121581.


FX

PS: :REVIEWMAIL:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]