Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softfloat/conversion.c

    ra35b458 r874381a  
    11101110}
    11111111
     1112int64_t __aeabi_f2lz(float32_t a)
     1113{
     1114        float32_u ua;
     1115        ua.val = a;
     1116
     1117        return float32_to_int64(ua.data);
     1118}
     1119
    11121120uint32_t __aeabi_f2uiz(float32_t a)
    11131121{
Note: See TracChangeset for help on using the changeset viewer.