aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-30 19:54:27 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-30 19:54:27 -0700
commit6bceaa4a60da1f075bdd3133d7d95d8d5d7a06ac (patch)
tree37bb8eb3667c397d1b7e6bd1733aae710abd6dd7 /sys/cmd/cc/cc.h
parentfc158ab464fd58aec17aa590bc2022f539fefc5a (diff)
fix: many use before initialization bugs
Diffstat (limited to 'sys/cmd/cc/cc.h')
-rw-r--r--sys/cmd/cc/cc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/cmd/cc/cc.h b/sys/cmd/cc/cc.h
index d030b91..de1ec3f 100644
--- a/sys/cmd/cc/cc.h
+++ b/sys/cmd/cc/cc.h
@@ -728,6 +728,9 @@ struct Parser
Name *nm;
Name nmstk[40];
+ Ptr *pt;
+ Ptr ptstk[10];
+
Dtor *dt;
Dtor dtstk[40];
};