Re: [PATH] Patch to fix -finstrument-functions-exclude-function-list handling of namespaces and escaped commas

2019-07-04 Thread Oliver Browne
-07-04 08:55:25.287523000 +0100 @@ -263,7 +263,9 @@ add_comma_separated_to_vector (void **pv *w++ = *r++; } + *w = '\0'; if (*token_start != '\0') + { v->safe_push (token_start); - + } *pvec = v; } On Thu, Jul 4, 2019 at 12:31 AM Jeff Law wrote: &

[PATCH] Fix for c++/90816, c++/90809, Fixes -finstrument-functions-exclude-function-list namespace and comma handling

2019-06-16 Thread Oliver Browne
add_comma_separated_to_vector [opts.c] Added writing of a null character to w after primary loop finishes, to account for offset between r and w when r reaches end of passed string. from Oliver Browne PR c++/90816 PR c++/90809 * gimplify.c (flag_instrument_functions_exclude_p): include namespace

[PATH] Patch to fix -finstrument-functions-exclude-function-list handling of namespaces and escaped commas

2019-06-12 Thread Oliver Browne
add_comma_separated_to_vector [opts.c] Added writing of a null character to w after primary loop finishes, to account for offset between r and w when r reaches end of passed string. from Oliver Browne PR c++/90816 PR c++/90809 * gimplify.c (flag_instrument_functions_exclude_p): include namespace