summaryrefslogtreecommitdiff
path: root/typd_mlc.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-08-30 22:20:25 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-08-30 22:23:09 +0300
commitee3c7efba3fada60e3d9a4d465c5172000f6fb02 (patch)
treebbc0137eaaed8bd34676a92094510948b1c1aa44 /typd_mlc.c
parent630a5980a412ac8c951ffbe725b3f60b825b90ec (diff)
downloadbdwgc-ee3c7efba3fada60e3d9a4d465c5172000f6fb02.tar.gz
Eliminate 'poor global variable name' code defect in typd_mlc
(fix of commit a825a2d) * typd_mlc.c (ld, ad, sd): Remove unused global variables.
Diffstat (limited to 'typd_mlc.c')
-rw-r--r--typd_mlc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/typd_mlc.c b/typd_mlc.c
index eb40b0e7..90a86bb7 100644
--- a/typd_mlc.c
+++ b/typd_mlc.c
@@ -71,21 +71,21 @@ typedef struct {
size_t ld_nelements; /* Number of elements. */
GC_descr ld_descriptor; /* A simple length, bitmap, */
/* or procedure descriptor. */
- } ld;
+ };
struct ComplexArrayDescriptor {
word ad_tag;
# define ARRAY_TAG 2
size_t ad_nelements;
union ComplexDescriptor * ad_element_descr;
- } ad;
+ };
struct SequenceDescriptor {
word sd_tag;
# define SEQUENCE_TAG 3
union ComplexDescriptor * sd_first;
union ComplexDescriptor * sd_second;
- } sd;
+ };
typedef union ComplexDescriptor {
struct LeafDescriptor ld;