aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/src/gen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcc/src/gen.c')
-rw-r--r--lcc/src/gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcc/src/gen.c b/lcc/src/gen.c
index 7202c45..4ee170d 100644
--- a/lcc/src/gen.c
+++ b/lcc/src/gen.c
@@ -368,7 +368,7 @@ static unsigned emitasm(Node p, int nt) {
void emit(Node p) {
for (; p; p = p->x.next) {
assert(p->x.registered);
- if (p->x.equatable && requate(p) || moveself(p))
+ if ((p->x.equatable && requate(p)) || moveself(p))
;
else
(*emitter)(p, p->x.inst);