Tells the compiler the mode in which to speculate on floating-point (FP) operations. This is a deprecated option.
Windows: None
Linux: Floating Point > Floating-Point Speculation
Mac OS: None
IA-64 architecture
Linux: | -IPF-fp-speculationmode |
Mac OS: | None |
Windows: | /QIPF-fp-speculationmode |
mode | Is the mode for floating-point operations. Possible values are: | |
fast | Tells the compiler to speculate on floating-point operations. | |
safe | Tells the compiler to disable speculation if there is a possibility that the speculation may cause a floating-point exception. | |
strict | Tells the compiler to disable speculation on floating-point operations. | |
off | Same as strict. |
-IPF-fp-speculationfast
or /QIPF-fp-speculationfast |
The compiler speculates on floating-point operations when optimizations are enabled. If you specify no optimizations (-O0 on Linux; /Od on Windows), the default is -IPF-fp-speculationsafe (Linux) or /QIPF-fp-speculationsafe (Windows). |
This option tells the compiler the mode in which to speculate on floating-point (FP) operations.
None