1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-04-07 21:40:53 +00:00

FPU: Fix typo in expression for exp_huge

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
This commit is contained in:
Paul Mackerras
2024-03-11 21:49:28 +11:00
parent 18911455c6
commit 95595af08d

View File

@@ -1007,7 +1007,7 @@ begin
elsif new_exp < min_exp then
exp_tiny := '1';
end if;
if is_X(new_exp) or is_X(min_exp) then
if is_X(new_exp) or is_X(max_exp) then
exp_huge := 'X';
elsif new_exp > max_exp then
exp_huge := '1';