diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-10-12 15:09:26 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-10-12 15:09:26 +0200 |
commit | 29e775304704a116185b45d1afd63a1387b5d348 (patch) | |
tree | c8e80a116e233caa3d01e2d01252a6d316da5797 | |
parent | cf7bb33f4d9532dc7ea2551acbf888341b8f12ce (diff) | |
download | gcc-29e775304704a116185b45d1afd63a1387b5d348.zip gcc-29e775304704a116185b45d1afd63a1387b5d348.tar.gz gcc-29e775304704a116185b45d1afd63a1387b5d348.tar.bz2 |
Un-break dwarf2out for DWARF2_LINENO_DEBUGGING_INFO configurations
gcc/
* dwarf2out.c (dwarf2_lineno_debug_hooks): Use
dwarf2out_assembly_start.
From-SVN: r241045
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d6880d9..c66b7a7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2016-10-12 Thomas Schwinge <thomas@codesourcery.com> + * dwarf2out.c (dwarf2_lineno_debug_hooks): Use + dwarf2out_assembly_start. + * Makefile.in (SELFTEST_FLAGS): Add -nostdinc. * Makefile.in (SELFTEST_FLAGS): New variable. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index b5787ef..98deeef 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -2540,7 +2540,7 @@ const struct gcc_debug_hooks dwarf2_lineno_debug_hooks = dwarf2out_init, debug_nothing_charstar, debug_nothing_charstar, - debug_nothing_void, + dwarf2out_assembly_start, debug_nothing_int_charstar, debug_nothing_int_charstar, debug_nothing_int_charstar, |