aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2016-05-31 15:54:43 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2016-05-31 15:54:43 +0000
commit86f57bd55c2093b814c00e3dee33d89711d6fbda (patch)
treebabcd9078d529a22177620ed694ce1c1f671a077 /gcc
parent34d5fe774e8dfff32156ba77aedd20060045955d (diff)
downloadgcc-86f57bd55c2093b814c00e3dee33d89711d6fbda.zip
gcc-86f57bd55c2093b814c00e3dee33d89711d6fbda.tar.gz
gcc-86f57bd55c2093b814c00e3dee33d89711d6fbda.tar.bz2
* dwarf2out.c (cur_line_info_table): Add GTY marker.
From-SVN: r236929
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/dwarf2out.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index abb536a..984e180 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2016-05-31 Nathan Sidwell <nathan@acm.org>
+
+ * dwarf2out.c (cur_line_info_table): Add GTY marker.
+
2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
* config/sh/constraints.md (b): Remove constraint.
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index b0173f7..fe09868 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -3038,7 +3038,7 @@ static unsigned int line_info_label_num;
/* The current table to which we should emit line number information
for the current function. This will be set up at the beginning of
assembly for the function. */
-static dw_line_info_table *cur_line_info_table;
+static GTY(()) dw_line_info_table *cur_line_info_table;
/* The two default tables of line number info. */
static GTY(()) dw_line_info_table *text_section_line_info;