From fd0a53b37898b617c56bc4af8b0af9651f9bde43 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 25 Apr 2025 10:55:27 -0400 Subject: Speculative fix. --- src/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compile.c') diff --git a/src/compile.c b/src/compile.c index 79ae73a6..37b3934f 100644 --- a/src/compile.c +++ b/src/compile.c @@ -1258,7 +1258,7 @@ static CORD _compile_statement(env_t *env, ast_t *ast) case LessThanOrEquals: failure = ">"; goto assert_comparison; case GreaterThan: failure = "<="; goto assert_comparison; case GreaterThanOrEquals: failure = "<"; goto assert_comparison; { - assert_comparison: + assert_comparison:; binary_operands_t cmp = BINARY_OPERANDS(expr); type_t *lhs_t = get_type(env, cmp.lhs); type_t *rhs_t = get_type(env, cmp.rhs); -- cgit v1.2.3