diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-31 16:17:52 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-31 16:17:52 +0000 |
commit | 924b2c07cdfaba9ac408fc5fa77da75a570f9dc5 (patch) | |
tree | 048de733f0f80c7b1d3b8fd2037128b60363dff8 /target-mips | |
parent | 471ea271435cb87a158fc473fb1cd7a45d2fc4d3 (diff) |
Add proper float*_is_nan prototypes.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2902 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/op_helper.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 3d99d06fd7..da28645973 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -1147,7 +1147,6 @@ void do_cmpabs_s_ ## op (long cc) \ flag float32_is_unordered(int sig, float32 a, float32 b STATUS_PARAM) { - extern flag float32_is_nan(float32 a); if (float32_is_signaling_nan(a) || float32_is_signaling_nan(b) || (sig && (float32_is_nan(a) || float32_is_nan(b)))) { |