Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jngrad committed Dec 14, 2024
1 parent 37cf52f commit 923f4c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/unit_tests/fpe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ printf("disable: %llu\n",env.__fpcr);
int fe_trap::parse_excepts(std::optional<int> excepts) {
auto const fallback = FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW;
int retval = excepts ? *excepts : fallback;
#elif defined(__arm64__) and defined(__APPLE__)
#if defined(__arm64__) and defined(__APPLE__)
retval <<= 8;
#endif
return retval;
Expand Down

0 comments on commit 923f4c8

Please sign in to comment.