[BACK]Return to interval.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / include

Diff for /OpenXM_contrib2/asir2000/include/interval.h between version 1.8 and 1.10

version 1.8, 2004/12/10 07:36:34 version 1.10, 2006/02/05 06:47:03
Line 1 
Line 1 
 /*  /*
  * $OpenXM: OpenXM_contrib2/asir2000/include/interval.h,v 1.7 2004/03/25 16:32:45 ohara Exp $   * $OpenXM: OpenXM_contrib2/asir2000/include/interval.h,v 1.9 2005/02/08 16:42:40 saito Exp $
 */  */
 #ifndef _INTERVAL_H  #ifndef _INTERVAL_H
 #define _INTERVAL_H  #define _INTERVAL_H
Line 34  static char *Interval_dummy;
Line 34  static char *Interval_dummy;
 #include        <fpu_control.h>  #include        <fpu_control.h>
 #if 1  #if 1
 #define LINUX_FPU_RC_MASK                               0xf3ff  #define LINUX_FPU_RC_MASK                               0xf3ff
 #define LINUX_FPU_SETCW(c)                      {_FPU_GETCW(__fpu_control);\  #define LINUX_FPU_SETCW(c)                      \
                                 _FPU_SETCW(__fpu_control & LINUX_FPU_RC_MASK | c);}  {fpu_control_t __tmp__; _FPU_GETCW(__fpu_control);\
    __tmp__ = (__fpu_control & LINUX_FPU_RC_MASK | c);\
    _FPU_SETCW(__tmp__);}
 #define FPNEAREST       LINUX_FPU_SETCW(_FPU_RC_NEAREST);  #define FPNEAREST       LINUX_FPU_SETCW(_FPU_RC_NEAREST);
 #define FPPLUSINF       LINUX_FPU_SETCW(_FPU_RC_UP);  #define FPPLUSINF       LINUX_FPU_SETCW(_FPU_RC_UP);
 #define FPMINUSINF      LINUX_FPU_SETCW(_FPU_RC_DOWN);  #define FPMINUSINF      LINUX_FPU_SETCW(_FPU_RC_DOWN);
Line 107  static char *Interval_dummy;
Line 109  static char *Interval_dummy;
 #undef  N_GFPN  #undef  N_GFPN
 #undef  N_GFS  #undef  N_GFS
 #undef  N_GFSN  #undef  N_GFSN
   #undef  N_DA
 #define N_NEXT_B                (N_B+1)  #define N_NEXT_B                (N_B+1)
 #define N_Quad                  (N_NEXT_B)  #define N_Quad                  (N_NEXT_B)
 #define N_IP                    (N_NEXT_B+1)  #define N_IP                    (N_NEXT_B+1)

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.10

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>