aboutsummaryrefslogtreecommitdiff
path: root/gcc/debug.h
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2017-12-12 02:16:47 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2017-12-12 02:16:47 +0000
commit102d484d482d055c2e9d0a6c383ca6437f45fe97 (patch)
tree6687a11b9dc9b8effdb7141ad4bdf02a6f5f4fc0 /gcc/debug.h
parent8697bf9f46f36168ddba5752db582e673e3cbe8c (diff)
downloadgcc-102d484d482d055c2e9d0a6c383ca6437f45fe97.zip
gcc-102d484d482d055c2e9d0a6c383ca6437f45fe97.tar.gz
gcc-102d484d482d055c2e9d0a6c383ca6437f45fe97.tar.bz2
[IEPM] Introduce debug hook for inline entry point markers
The inline_entry hook will be given a definition in a later patch. for gcc/ChangeLog * debug.h (gcc_debug_hooks): Add inline_entry. * dbxout.c (dbx_debug_hooks, xcoff_debug_hooks): Likewise. * debug.c (do_nothing_debug_hooks): Likewise. * vmsdbgout.c (vmsdbg_debug_hooks): Likewise. * dwarf2out.c (dwarf2_debug_hooks): Likewise. (dwarf2_lineno_debug_hooks): Likewise. From-SVN: r255570
Diffstat (limited to 'gcc/debug.h')
-rw-r--r--gcc/debug.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/debug.h b/gcc/debug.h
index 277d990..bed3f17 100644
--- a/gcc/debug.h
+++ b/gcc/debug.h
@@ -176,6 +176,9 @@ struct gcc_debug_hooks
/* Called from final_scan_insn for any NOTE_INSN_VAR_LOCATION note. */
void (* var_location) (rtx_insn *);
+ /* Called from final_scan_insn for any NOTE_INSN_INLINE_ENTRY note. */
+ void (* inline_entry) (tree block);
+
/* 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. */