From 6a1f6c9c8645b35f6704ded5f1f3f9186dadc109 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 19 Nov 2010 13:27:18 +0000 Subject: common.opt (flag_instrument_functions_exclude_functions, [...]): New Variable definitions. * common.opt (flag_instrument_functions_exclude_functions, flag_instrument_functions_exclude_files): New Variable definitions. * flags.h (flag_instrument_functions_exclude_p): Don't declare. * gimplify.c (char_p): Declare type and vectors. (flag_instrument_functions_exclude_p): Moved from opts.c. Make static. * opts.c (flag_instrument_functions_exclude_functions, flag_instrument_functions_exclude_files): Remove. (add_comma_separated_to_vector): Take void **. (flag_instrument_functions_exclude_p): Move to gimplify.c. (common_handle_option): Use options structure for -finstrument-functions-exclude- options. From-SVN: r166943 --- gcc/flags.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'gcc/flags.h') diff --git a/gcc/flags.h b/gcc/flags.h index 7aa9ff1..3cc65a4 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -159,10 +159,6 @@ extern enum stack_check_type flag_stack_check; #define abi_version_at_least(N) \ (flag_abi_version == 0 || flag_abi_version >= (N)) -/* Return whether the function should be excluded from - instrumentation. */ -extern bool flag_instrument_functions_exclude_p (tree fndecl); - /* True if overflow wraps around for the given integral type. That is, TYPE_MAX + 1 == TYPE_MIN. */ #define TYPE_OVERFLOW_WRAPS(TYPE) \ -- cgit v1.1