File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,6 @@ static inline void fpu_fcom(x86emu_t* emu, double b)
8484 emu -> sw .f .F87_C0 = 1 ;
8585 emu -> sw .f .F87_C2 = 1 ;
8686 emu -> sw .f .F87_C3 = 1 ;
87- } else if ((b == - INFINITY ) || (ST0 .d == INFINITY )) {
88- emu -> sw .f .F87_C0 = 0 ;
89- emu -> sw .f .F87_C2 = 0 ;
90- emu -> sw .f .F87_C3 = 0 ;
9187 } else if (isgreater (ST0 .d , b )) {
9288 emu -> sw .f .F87_C0 = 0 ;
9389 emu -> sw .f .F87_C2 = 0 ;
@@ -115,10 +111,6 @@ static inline void fpu_fcomi(x86emu_t* emu, double b)
115111 SET_FLAG (F_CF );
116112 SET_FLAG (F_PF );
117113 SET_FLAG (F_ZF );
118- } else if ((b == - INFINITY ) || (ST0 .d == INFINITY )) {
119- CLEAR_FLAG (F_CF );
120- CLEAR_FLAG (F_PF );
121- CLEAR_FLAG (F_ZF );
122114 } else if (isgreater (ST0 .d , b )) {
123115 CLEAR_FLAG (F_CF );
124116 CLEAR_FLAG (F_PF );
You can’t perform that action at this time.
0 commit comments