提交 569f5d66 编写于 作者: B bellard

compilation fix


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2205 c046a42c-6fe2-441c-8c8c-71466251a162
上级 750afe93
......@@ -27,10 +27,6 @@
//#include "fpmodule.h"
//#include "fpmodule.inl"
extern flag floatx80_is_nan(floatx80);
extern flag float64_is_nan( float64);
extern flag float32_is_nan( float32);
void SetRoundingMode(const unsigned int opcode);
unsigned int PerformFLT(const unsigned int opcode);
......
......@@ -977,9 +977,8 @@ void op_cmp_ ## fmt ## _ ## op (void) \
RETURN(); \
}
flag float64_is_unordered(float64 a, float64 b STATUS_PARAM)
int float64_is_unordered(float64 a, float64 b STATUS_PARAM)
{
extern flag float64_is_nan( float64 a );
if (float64_is_nan(a) || float64_is_nan(b)) {
float_raise(float_flag_invalid, status);
return 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册