The compile-time float evaluator lagged the integer one: it had no numeric-limit field-access arm, so `y : s64 = f64.true_min + 0.5` (=0.5) silently truncated to 0 even though the direct `f64.true_min` already errored; the arm-by-arm audit also found a missing `%` arm, so `y : s64 = 5.5 % 2.0` (=1.5) silently truncated to 1. Bring evalConstFloatExpr to PARITY with evalConstIntExpr: - Add a `.field_access` arm resolving a builtin FLOAT numeric-limit accessor (`f64.max`, `f32.epsilon`, `f64.true_min`, …) via the SAME `type_resolver.floatLimitFor` that `lowerNumericLimit` uses — the float twin of the int evaluator's `integerLimitFor` arm. - Add a `.mod` arm via `@rem` (matching evalConstIntExpr and codegen's `frem`): `6.0 % 4.0` folds to 2 (via int delegation), `5.5 % 2.0` = 1.5 is rejected. The two evaluators now share every leaf/operator shape, so no compile-time-const float form escapes the unified float→int rule at one site while folding at another. All five sites (local/field/param/const/ array-dim) stay consistent. Regression: 0168 (positive) adds `f64.max - f64.max` → 0, `6.0 % 4.0` → 2, integer-limit `s8.max`/`[u8.max]` unregressed, `xx` escapes for both new forms; 1146 (negative) adds `f64.true_min + 0.5` and `5.5 % 2.0` erroring at a binding site; program_index.test.zig covers the floatLimitFor arm and the `%` arm. specs.md + readme.md state the parity. issues/0095 RESOLVED banner gains the attempt-5 entry.
72 lines
3.5 KiB
Plaintext
72 lines
3.5 KiB
Plaintext
error: cannot implicitly narrow non-integral float '1.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:40:16
|
|
|
|
|
40 | y : s64 = 1.5; // non-integral float LITERAL local → error
|
|
| ^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:41:16
|
|
|
|
|
41 | ye : s64 = M + 0.5; // non-integral int-const-EXPRESSION local → error
|
|
| ^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.75' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:42:16
|
|
|
|
|
42 | yf : s64 = F + 0.25; // non-integral float-const-LEAF local → error
|
|
| ^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '0.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:43:16
|
|
|
|
|
43 | yn : s64 = f64.true_min + 0.5; // non-integral numeric-limit float expr → error
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '1.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:44:16
|
|
|
|
|
44 | ym : s64 = 5.5 % 2.0; // non-integral float `%` remainder (1.5) → error
|
|
| ^^^^^^^^^
|
|
|
|
error: array dimension must be an integer, but '2.75' is a non-integral float
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:45:11
|
|
|
|
|
45 | ad : [F + 0.25]s64 = ---; // non-integral float-const-LEAF array DIMENSION → error
|
|
| ^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '3.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:30:16
|
|
|
|
|
30 | f : s64 = 3.5; // non-integral float LITERAL field default → error
|
|
| ^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:31:16
|
|
|
|
|
31 | fe : s64 = M + 0.5; // non-integral int-const-EXPR field default → error
|
|
| ^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.75' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:32:16
|
|
|
|
|
32 | ff : s64 = F + 0.25; // non-integral float-const-LEAF field default → error
|
|
| ^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:35:23
|
|
|
|
|
35 | badLit :: (x : s64 = 2.5) -> s64 { return x; } // non-integral LITERAL param default → error
|
|
| ^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:36:23
|
|
|
|
|
36 | badExpr :: (x : s64 = M + 0.5) -> s64 { return x; } // non-integral int-const-EXPR param default → error
|
|
| ^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.75' to 's64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/1146-diagnostics-nonintegral-float-to-int.sx:37:23
|
|
|
|
|
37 | badFlt :: (x : s64 = F + 0.25) -> s64 { return x; } // non-integral float-const-LEAF param default → error
|
|
| ^^^^^^^^
|