Skip to content

Commit

Permalink
Fix idiv
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Nov 5, 2024
1 parent 19e3ccb commit 1bcf111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/absint.jl
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ function abs_typeof(
shouldLoad = false
offset %= sizeof(Int)
else
sz = actual_size(ET)
sz = max(1, actual_size(ET))
offset %= sz
end
end
Expand Down

0 comments on commit 1bcf111

Please sign in to comment.