Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions interval/fpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ def _init_libm(): # pragma: nocover
_fe_upward, _fe_downward = 2, 3
elif processor == 'sparc':
_fe_upward, _fe_downward = 0x80000000, 0xC0000000
elif processor == 'arm':
_fe_upward, _fe_downward = 0x400000, 0x800000
else:
_fe_upward, _fe_downward = 0x0800, 0x0400

Expand Down