diff options
Diffstat (limited to 'gcc/debug.h')
-rw-r--r-- | gcc/debug.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/debug.h b/gcc/debug.h index 9784300..14c08c8 100644 --- a/gcc/debug.h +++ b/gcc/debug.h @@ -166,6 +166,11 @@ struct gcc_debug_hooks /* Called from final_scan_insn for any NOTE_INSN_VAR_LOCATION note. */ void (* var_location) (rtx_insn *); + /* Called from finalize_size_functions for size functions so that their body + can be encoded in the debug info to describe the layout of variable-length + structures. */ + void (* size_function) (tree decl); + /* Called from final_scan_insn if there is a switch between hot and cold text sections. */ void (* switch_text_section) (void); |