diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-25 10:55:27 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-25 10:55:27 -0400 |
| commit | fd0a53b37898b617c56bc4af8b0af9651f9bde43 (patch) | |
| tree | 4ae70d9236d9847301dc0062653b358f8361e839 | |
| parent | 2a43fd3bc5e056aa994cfb86b52a5c9844a355e0 (diff) | |
Speculative fix.
| -rw-r--r-- | src/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
