הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
instruction may be inaccurate on some Pentiums
Remarks
Your code contains an inline assembly instruction that may not produce accurate results on some Pentium microprocessors.
Example
The following example generates C4725:
// C4725.cpp
// compile with: /W4
// processor: x86
double m32fp = 2.0003e-17;
void f() {
__asm
{
FDIV m32fp // C4725
}
}
int main() {
}