diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-10-12 15:08:53 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-10-12 15:08:53 +0200 |
commit | 96f0a5131cf0571d75213c9ac7052e8118ce3fe8 (patch) | |
tree | 0102266a847806b6d5618b82e01b3d020fb69c08 /gcc | |
parent | f31dcd99acf739592481156f18e58a2e394d5713 (diff) | |
download | gcc-96f0a5131cf0571d75213c9ac7052e8118ce3fe8.zip gcc-96f0a5131cf0571d75213c9ac7052e8118ce3fe8.tar.gz gcc-96f0a5131cf0571d75213c9ac7052e8118ce3fe8.tar.bz2 |
Fix gcc/vmsdbgout.c:vmsdbg_debug_hooks for "More trivial bits from early LTO debug merge"
gcc/
* vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to
early_finish hook.
From-SVN: r241042
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/vmsdbgout.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8044af0..e57438e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-10-12 Thomas Schwinge <thomas@codesourcery.com> + + * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to + early_finish hook. + 2016-10-12 Georg-Johann Lay <avr@gjlay.de> * rtl.h (struct rtx_def): Comment how RTX_FLAGS will be diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c index 7c6d64d..23f7631 100644 --- a/gcc/vmsdbgout.c +++ b/gcc/vmsdbgout.c @@ -174,7 +174,7 @@ static void vmsdbgout_abstract_function (tree); const struct gcc_debug_hooks vmsdbg_debug_hooks = {vmsdbgout_init, vmsdbgout_finish, - debug_nothing_void, + debug_nothing_charstar, vmsdbgout_assembly_start, vmsdbgout_define, vmsdbgout_undef, |