aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2003-01-21 14:54:21 +0000
committerUlrich Weigand <uweigand@gcc.gnu.org>2003-01-21 14:54:21 +0000
commit044b4de3d85f870850d185c96de1746202710251 (patch)
tree0e679a850248c2589d48211575201caa1d2cf465 /gcc/emit-rtl.c
parentcfedf91bdca924f7ec8a558333d179351a794c2c (diff)
downloadgcc-044b4de3d85f870850d185c96de1746202710251.zip
gcc-044b4de3d85f870850d185c96de1746202710251.tar.gz
gcc-044b4de3d85f870850d185c96de1746202710251.tar.bz2
dwarf2out.c (fde_table_in_use): Mark GTY.
* dwarf2out.c (fde_table_in_use): Mark GTY. (dwarf2out_cfi_label_num): New variable, marked GTY. (dwarf2out_cfi_label): Use it instead of static label_num. * emit-rtl.c (label_num): Mark GTY. From-SVN: r61547
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index bacbf03..5dd599a 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -69,7 +69,7 @@ enum machine_mode ptr_mode; /* Mode whose width is POINTER_SIZE. */
/* This is *not* reset after each function. It gives each CODE_LABEL
in the entire compilation a unique label number. */
-static int label_num = 1;
+static GTY(()) int label_num = 1;
/* Highest label number in current function.
Zero means use the value of label_num instead.