From 5747ddb77fd9d992e335b183125b35c5c62813ab Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 13 Sep 2022 21:31:54 +0900 Subject: [PATCH] [qfcc] Skip recording defs for binary expressions For now, anyway, as the generated code looks good. There might be problems with actual pointer expressions, but it allows entity.field to work as expected rather than generate an ICE. --- tools/qfcc/source/statements.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/qfcc/source/statements.c b/tools/qfcc/source/statements.c index ec011d1e4..7f5134318 100644 --- a/tools/qfcc/source/statements.c +++ b/tools/qfcc/source/statements.c @@ -1238,6 +1238,8 @@ find_def_operand (expr_t *ref) expr_symbol (0, ref, &op); } else if (ref->type == ex_def) { expr_def (0, ref, &op); + } else if (ref->type == ex_expr) { + debug (ref, "unexpected expr type: %s", expr_names[ref->type]); } else { internal_error (ref, "unexpected expr type: %s", expr_names[ref->type]);