diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2003-01-21 14:54:21 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2003-01-21 14:54:21 +0000 |
commit | 044b4de3d85f870850d185c96de1746202710251 (patch) | |
tree | 0e679a850248c2589d48211575201caa1d2cf465 /gcc/emit-rtl.c | |
parent | cfedf91bdca924f7ec8a558333d179351a794c2c (diff) | |
download | gcc-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.c | 2 |
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. |