aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-09-29 14:43:58 -0700
committerMichael Forney <mforney@mforney.org>2021-09-29 14:43:58 -0700
commit83e2a1c124a229351df23b336a44db1603862d98 (patch)
tree3fa25fba701d141adda33c0b539a3394be029cff
parent55395c5e81f8769315888bee61b67e6bbf5da5eb (diff)
downloadcproc-83e2a1c124a229351df23b336a44db1603862d98.tar.xz
eval: Remove now unneeded handling of EXPRCOND
We now do this evaluation during parsing.
-rw-r--r--eval.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/eval.c b/eval.c
index 48053c4..7d9a822 100644
--- a/eval.c
+++ b/eval.c
@@ -184,13 +184,6 @@ eval(struct expr *expr, enum evalkind kind)
binary(expr, expr->op, l, r);
}
break;
- case EXPRCOND:
- l = expr->cond.t;
- r = expr->cond.f;
- c = eval(expr->base, kind);
- if (c->kind != EXPRCONST)
- break;
- return eval(c->constant.i ? l : r, kind);
}
return expr;