summaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-13 01:58:45 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-13 01:58:45 +0000
commit3590147160cf77ac2afb72e80fd68d6ac0c3977b (patch)
tree620724275961c3e490611bea34f8d2c8cba0a9dd /gcc/function.h
parenta2ebbb48809073ff0ad025e7ab625bf9c3ec5b0a (diff)
downloadgcc-3590147160cf77ac2afb72e80fd68d6ac0c3977b.tar.gz
PR c++/13376
* function.h (struct function): Kill `name' field. (current_function_name): Make it an extern function. * function.c (current_function_name): New function. * graph.c: Update all uses of current_function_name. * gcse.c: Likewise. * config/alpha/alpha.c, config/avr/avr.c, config/c4x/c4x.c, config/mips/mips.c, config/pdp11/pdp11.c: Likewise. * config/ip2k/ip2k.c (function_prologue): Use MAIN_NAME_P instead of a strcmp with "main". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75784 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 89a1465ad0a..088fbbb5320 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -183,9 +183,6 @@ struct function GTY(())
/* For function.c. */
- /* Name of this function. */
- const char *name;
-
/* Points to the FUNCTION_DECL of this function. */
tree decl;
@@ -534,7 +531,6 @@ extern int virtuals_instantiated;
extern int trampolines_created;
/* For backward compatibility... eventually these should all go away. */
-#define current_function_name (cfun->name)
#define current_function_pops_args (cfun->pops_args)
#define current_function_returns_struct (cfun->returns_struct)
#define current_function_returns_pcc_struct (cfun->returns_pcc_struct)
@@ -638,6 +634,9 @@ extern rtx get_arg_pointer_save_area (struct function *);
extern void init_virtual_regs (struct emit_status *);
+/* Returns the name of the current function. */
+extern const char *current_function_name (void);
+
/* Called once, at initialization, to initialize function.c. */
extern void init_function_once (void);