aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-06-05 01:38:00 -0700
committerMichael Forney <mforney@mforney.org>2020-06-05 01:38:00 -0700
commitec6ec4b1d04092e7175b658d5ea884e3f3b82c81 (patch)
tree9db13ec1ac3b04177d0084b7615fc534b2b850f4
parent38b1d570ac9f35af9b58e7ff33d61698b83384ff (diff)
downloadcproc-ec6ec4b1d04092e7175b658d5ea884e3f3b82c81.tar.xz
Help gcc see that variables are not used uninitialized
-rw-r--r--init.c2
-rw-r--r--pp.c3
-rw-r--r--token.c2
3 files changed, 5 insertions, 2 deletions
diff --git a/init.c b/init.c
index f9346fa..0e890c0 100644
--- a/init.c
+++ b/init.c
@@ -163,6 +163,8 @@ focus(struct initparser *p)
p->sub->mem = p->sub->type->structunion.members;
t = p->sub->mem->type;
break;
+ default:
+ fatal("internal error: init cursor has unexpected type");
}
subobj(p, t, 0);
}
diff --git a/pp.c b/pp.c
index 5b9258b..d3f9915 100644
--- a/pp.c
+++ b/pp.c
@@ -220,8 +220,9 @@ define(void)
if (t->kind == TLPAREN && !t->space) {
m->kind = MACROFUNC;
/* read macro parameter names */
+ p = NULL;
while (scan(&tok), tok.kind != TRPAREN) {
- if (params.len) {
+ if (p) {
if (p->flags & PARAMVAR)
tokencheck(&tok, TRPAREN, "after '...'");
tokencheck(&tok, TCOMMA, "or ')' after macro parameter");
diff --git a/token.c b/token.c
index 0fe306f..ae31ac4 100644
--- a/token.c
+++ b/token.c
@@ -143,7 +143,7 @@ static void
tokendesc(char *buf, size_t len, enum tokenkind kind, const char *lit)
{
const char *class;
- bool quote;
+ bool quote = true;
switch (kind) {
case TEOF: class = "EOF"; break;