File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,6 @@ float_control( value,setting [push] | push | pop )
47
47
#pragma float_control(except, off)
48
48
#pragma fenv_access(off)
49
49
#pragma float_control(precise, off)
50
- // The following line is needed on Itanium processors
51
- #pragma fp_contract(on)
52
50
```
53
51
54
52
To go from fast model to a strict model with the ` float_control ` pragma, use the following code:
@@ -57,8 +55,6 @@ float_control( value,setting [push] | push | pop )
57
55
#pragma float_control(precise, on)
58
56
#pragma fenv_access(on)
59
57
#pragma float_control(except, on)
60
- // The following line is needed on Itanium processors.
61
- #pragma fp_contract(off)
62
58
```
63
59
64
60
Other floating-point pragmas include:
109
105
```
110
106
111
107
## See Also
112
- [ Pragma Directives and the __ Pragma Keyword] ( ../preprocessor/pragma-directives-and-the-pragma-keyword.md )
108
+ [ Pragma Directives and the __ Pragma Keyword] ( ../preprocessor/pragma-directives-and-the-pragma-keyword.md )
You can’t perform that action at this time.
0 commit comments