Changeset efdfebc in mainline for uspace/lib/softfloat/softfloat.h


Ignore:
Timestamp:
2012-11-06T21:03:44Z (11 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
338810f
Parents:
de73242 (diff), 94795812 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/softfloat/softfloat.h

    rde73242 refdfebc  
    173173
    174174/* SPARC quadruple-precision wrappers */
    175 
    176175extern void _Qp_add(long double *, long double *, long double *);
    177176extern void _Qp_sub(long double *, long double *, long double *);
     
    204203extern int _Qp_fne(long double *, long double *);
    205204
     205/* ARM EABI */
     206extern double __aeabi_i2d(int);
     207extern double __aeabi_ui2d(unsigned int);
     208extern unsigned int __aeabi_d2uiz(double);
     209
     210extern int __aeabi_f2iz(float);
     211extern int __aeabi_d2iz(double);
     212
     213extern int __aeabi_dcmpge(double, double);
     214extern int __aeabi_dcmpgt(double, double);
     215extern int __aeabi_dcmplt(double, double);
     216extern int __aeabi_dcmpeq(double, double);
     217
     218extern float __aeabi_fadd(float, float);
     219extern float __aeabi_fsub(float, float);
     220extern float __aeabi_fmul(float, float);
     221extern float __aeabi_fdiv(float, float);
     222
     223extern double __aeabi_dadd(double, double);
     224extern double __aeabi_dsub(double, double);
     225extern double __aeabi_dmul(double, double);
     226extern double __aeabi_ddiv(double, double);
     227
    206228/* Not implemented yet */
    207229extern void _Qp_sqrt(long double *, long double *);
Note: See TracChangeset for help on using the changeset viewer.