Skip to content

Commit f7d7c43

Browse files
committed
acrolinx
1 parent 5627844 commit f7d7c43

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/build/reference/oi-generate-intrinsic-functions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ Replaces some function calls with intrinsic or otherwise special forms of the fu
1717

1818
## Remarks
1919

20-
Programs that use intrinsic functions are faster because they do not have the overhead of function calls but may be larger because of the additional code created.
20+
Programs that use intrinsic functions are faster because they don't have the overhead of function calls but may be larger because of the extra code created.
2121

22-
See [intrinsic](../../preprocessor/intrinsic.md) for more information on which functions have intrinsic forms.
22+
For more information about which functions have intrinsic forms, see [intrinsic](../../preprocessor/intrinsic.md).
2323

24-
**/Oi** is only a request to the compiler to replace some function calls with intrinsics. The compiler may call the function (and not replace the function call with an intrinsic) if it will result in better performance.\
24+
**/Oi** is only a request to the compiler to replace some function calls with intrinsics. The compiler may call the function (and not replace the function call with an intrinsic) if it results in better performance.\
2525
**/Oi-** turns off this behavior, which may be useful if `/Oi` has been specified elsewhere and you want to override it.
2626

2727
**x86 Specific**
2828

29-
The intrinsic floating-point functions do not perform any special checks on input values and so work in restricted ranges of input, and have different exception handling and boundary conditions than the library routines with the same name. Using the true intrinsic forms implies loss of IEEE exception handling, and loss of `_matherr` and `errno` functionality; the latter implies loss of ANSI conformance. However, the intrinsic forms can considerably speed up floating-point-intensive programs, and for many programs, the conformance issues are of little practical value.
29+
The intrinsic floating-point functions don't perform any special checks on input values and so work in restricted ranges of input, and have different exception handling and boundary conditions than the library routines with the same name. Using the true intrinsic forms implies loss of IEEE exception handling, and loss of `_matherr` and `errno` functionality; the latter implies loss of ANSI conformance. However, the intrinsic forms can considerably speed up floating-point-intensive programs, and for many programs, the conformance issues are of little practical value.
3030

31-
You can use the [Za](za-ze-disable-language-extensions.md) compiler option to override generation of true intrinsic floating-point options. In this case, the functions are generated as library routines that pass arguments directly to the floating-point chip instead of pushing them onto the program stack.
31+
You can use the [`Za`](za-ze-disable-language-extensions.md) compiler option to override generation of true intrinsic floating-point options. In this case, the functions are generated as library routines that pass arguments directly to the floating-point chip instead of pushing them onto the program stack.
3232

3333
**END x86 Specific**
3434

0 commit comments

Comments
 (0)