diff options
Diffstat (limited to 'src/synth/synth-expr.adb')
-rw-r--r-- | src/synth/synth-expr.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/synth-expr.adb b/src/synth/synth-expr.adb index c3f1f2589..dab693362 100644 --- a/src/synth/synth-expr.adb +++ b/src/synth/synth-expr.adb @@ -460,7 +460,7 @@ package body Synth.Expr is elsif Lo >= 0 then -- Positive. V.Is_Signed := False; - V.W := Width (Clog2 (Uns64 (Hi))); + V.W := Width (Clog2 (Uns64 (Hi) + 1)); elsif Lo = Int64'First then -- Handle possible overflow. V.Is_Signed := True; |