diff options
author | Caroline Tice <ctice@apple.com> | 2005-04-09 20:41:49 +0000 |
---|---|---|
committer | Caroline Tice <ctice@gcc.gnu.org> | 2005-04-09 13:41:49 -0700 |
commit | e5e625da47c6215bb0075bfdf7da3a7595d16a32 (patch) | |
tree | ec3765f0365ed2285df397e3dba04f4164e18760 /gcc/function.h | |
parent | bd0e28a2adf23055c04afb46a8cda62bc02265b1 (diff) | |
download | gcc-e5e625da47c6215bb0075bfdf7da3a7595d16a32.zip gcc-e5e625da47c6215bb0075bfdf7da3a7595d16a32.tar.gz gcc-e5e625da47c6215bb0075bfdf7da3a7595d16a32.tar.bz2 |
Fix problems with labels with hot/cold partitioning.
From-SVN: r97928
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 b772752..d1f006b 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 |