From: Richard Kenner Date: Sat, 2 Aug 1997 17:17:58 +0000 (-0400) Subject: (flag_check_memory_usage, flag_prefix_function_name): New declaration. X-Git-Tag: misc/cutover-egcs-0~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=151b783bcaefa162d17c890307a545af171959bf;p=thirdparty%2Fgcc.git (flag_check_memory_usage, flag_prefix_function_name): New declaration. From-SVN: r14613 --- diff --git a/gcc/flags.h b/gcc/flags.h index 21eaed39dffb..e674227c77ac 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -397,6 +397,14 @@ extern int current_function_has_nonlocal_label; extern int current_function_has_nonlocal_goto; +/* Nonzero if GCC must add code to check memory access (used by Checker). */ + +extern int flag_check_memory_usage; + +/* Nonzero if GCC must prefix function names (used with + flag_check_memory_usage). */ + +extern int flag_prefix_function_name; /* Nonzero if the current function is a thunk, so we should try to cut corners where we can. */ extern int current_function_is_thunk;