diff options
author | ctice <ctice@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-09 20:41:49 +0000 |
---|---|---|
committer | ctice <ctice@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-09 20:41:49 +0000 |
commit | 32fb59abe84b4491fb04818d99930a1fcc3d94aa (patch) | |
tree | ec3765f0365ed2285df397e3dba04f4164e18760 /gcc/function.h | |
parent | 018f5cc25aa2b970849fb0f62a9e144b52f418b5 (diff) | |
download | gcc-32fb59abe84b4491fb04818d99930a1fcc3d94aa.tar.gz |
Fix problems with labels with hot/cold partitioning.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97928 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index b772752552f..d1f006ba1e8 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -349,6 +349,20 @@ struct function GTY(()) /* The variables unexpanded so far. */ tree unexpanded_var_list; + /* Assembly labels for the hot and cold text sections, to + be used by debugger functions for determining the size of text + sections. */ + + const char * hot_section_label; + const char * cold_section_label; + const char * hot_section_end_label; + const char * cold_section_end_label; + + /* String to be used for name of cold text sections, via + targetm.asm_out.named_section. */ + + const char *unlikely_text_section_name; + /* Collected bit flags. */ /* Nonzero if function being compiled needs to be given an address |