Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. int
  2. __fp_unordered_compare (long double x,  long double y){
  3.   unsigned short retval;
  4.   __asm__ (
  5.         "fucom %%st(1);"
  6.         "fnstsw;"
  7.         : "=a" (retval)
  8.         : "t" (x), "u" (y)
  9.         );
  10.   return retval;
  11. }
  12.