We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2020569 commit dd6c33dCopy full SHA for dd6c33d
kernel/x86/scal.S
@@ -57,19 +57,24 @@
57
#ifdef XDOUBLE
58
movl 44(%esp),%edi
59
movl 48(%esp),%esi
60
+ movl 64(%esp),%ecx
61
#elif defined(DOUBLE)
62
movl 36(%esp),%edi
63
movl 40(%esp),%esi
64
+ movl 56(%esp),%ecx
65
#else
66
movl 32(%esp),%edi
67
movl 36(%esp),%esi
68
+ movl 54(%esp),%ecx
69
#endif
70
71
ftst
72
fnstsw %ax
73
andb $68, %ah
-// je .L300 # Alpha != ZERO
- jmp .L300
74
+ je .L300 # Alpha != ZERO
75
+
76
+ cmpl $1,%ecx # dummy2 flag
77
+ je .L300
78
79
/* Alpha == ZERO */
80
cmpl $1,%esi
0 commit comments