From dddb7af4e7f76eed190876427902d99016ded180 Mon Sep 17 00:00:00 2001 From: Sam Tebbs Date: Fri, 14 Dec 2018 15:52:05 +0000 Subject: [PATCH 1/3][GCC] Add new target hook asm_post_cfi_startproc 2018-12-14 Sam Tebbs * doc/tm.texi (TARGET_ASM_POST_CFI_STARTPROC): Define. * doc/tm.texi.in (TARGET_ASM_POST_CFI_STARTPROC): Define. * dwarf2out.c (dwarf2out_do_cfi_startproc): Trigger the hook. * hooks.c (hook_void_FILEptr_tree): Define. * hooks.h (hook_void_FILEptr_tree): Define. * target.def (post_cfi_startproc): Define. From-SVN: r267135 --- gcc/hooks.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/hooks.c') diff --git a/gcc/hooks.c b/gcc/hooks.c index 780cc1e..46bf2a8 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -277,6 +277,11 @@ hook_void_tree (tree) } void +hook_void_FILEptr_tree (FILE *, tree) +{ +} + +void hook_void_rtx_tree (rtx, tree) { } -- cgit v1.1