Changeset 96126 in vbox for trunk/src/VBox/Runtime/common/math/llroundf.cpp
- Timestamp:
- Aug 8, 2022 11:17:09 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/math/llroundf.cpp
r96119 r96126 43 43 if (r32 >= (float)LLONG_MIN && r32 <= (float)LLONG_MAX) 44 44 return (long)r32; 45 / / @todo RT_NOCRT(feraiseexcept)(FE_INVALID);45 /** @todo RT_NOCRT(feraiseexcept)(FE_INVALID); */ 46 46 return r32 > 0 ? LLONG_MAX : LLONG_MIN; 47 47 } 48 / / @todo RT_NOCRT(feraiseexcept)(FE_INVALID);48 /** @todo RT_NOCRT(feraiseexcept)(FE_INVALID); */ 49 49 return LLONG_MAX; 50 50 } 51 51 RT_ALIAS_AND_EXPORT_NOCRT_SYMBOL(llroundf); 52 52 53
Note:
See TracChangeset
for help on using the changeset viewer.