Correct the position of the QUIETNAN bit.
This commit is contained in:
parent
4d65fcd111
commit
95971b8759
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ieee.h,v 1.6 2003/10/26 20:55:30 kleink Exp $ */
|
||||
/* $NetBSD: ieee.h,v 1.7 2003/10/26 20:59:51 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -74,7 +74,7 @@ struct ieee_ext {
|
|||
#define EXT_EXP_INFNAN 32767
|
||||
|
||||
#if 0
|
||||
#define EXT_QUIETNAN (1 << 15)
|
||||
#define EXT_QUIETNAN (1 << 30)
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ieee.h,v 1.5 2003/10/26 20:55:31 kleink Exp $ */
|
||||
/* $NetBSD: ieee.h,v 1.6 2003/10/26 20:59:51 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -79,7 +79,7 @@ struct ieee_ext {
|
|||
#define EXT_EXP_INFNAN 32767
|
||||
|
||||
#if 0
|
||||
#define EXT_QUIETNAN (1 << 15)
|
||||
#define EXT_QUIETNAN (1 << 30)
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue