fef4 and fef8 did not quite work properly: the exponent part is an
int, not a short!
This commit is contained in:
parent
f92dad2d9d
commit
1c7c9c60cf
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@
|
||||||
#include "FP_types.h"
|
#include "FP_types.h"
|
||||||
|
|
||||||
struct fef4_returns {
|
struct fef4_returns {
|
||||||
short e;
|
int e;
|
||||||
_float f;
|
_float f;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include "FP_types.h"
|
#include "FP_types.h"
|
||||||
|
|
||||||
struct fef8_returns {
|
struct fef8_returns {
|
||||||
short e;
|
int e;
|
||||||
_double f;
|
_double f;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue