aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1997-08-02 17:17:58 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1997-08-02 17:17:58 +0000
commitf0c10fcf3c0f5056cbf58e8f3af57931438e57a5 (patch)
tree3bcd69d851b95e6a0320486db8d92b69a4382f80
parentab716090c8797ebf11d41a797714edc981ed79e7 (diff)
(flag_check_memory_usage, flag_prefix_function_name): New declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14613 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/flags.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h
index 21eaed39dff..e674227c77a 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;