diff options
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 |