diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-08-02 13:17:58 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-08-02 13:17:58 -0400 |
commit | 151b783bcaefa162d17c890307a545af171959bf (patch) | |
tree | 3bcd69d851b95e6a0320486db8d92b69a4382f80 /gcc/flags.h | |
parent | 99b5da08231e335507fec1aa62914c5882a5f4ef (diff) | |
download | gcc-151b783bcaefa162d17c890307a545af171959bf.zip gcc-151b783bcaefa162d17c890307a545af171959bf.tar.gz gcc-151b783bcaefa162d17c890307a545af171959bf.tar.bz2 |
(flag_check_memory_usage, flag_prefix_function_name): New declaration.
From-SVN: r14613
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index 21eaed3..e674227 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; |