Intel® C++ Compiler 16.0 User and Reference Guide
Determines whether the compiler checks bounds for memory access through pointers.
Not available on Intel® 64 architecture targeting the Intel® Xeon Phi™ coprocessor x100 product family (formerly code name Knights Corner), on IA-32 architecture targeting Intel® Graphics Technology, or on Intel® 64 architecture targeting Intel® Graphics Technology
Linux: | -check-pointers=keyword |
OS X: | None |
Windows: | /Qcheck-pointers:keyword |
keyword |
Specifies what type of bounds checking occurs. Possible values are:
|
-check-pointers=none or /Qcheck-pointers:none |
No bounds checking occurs for memory access through pointers. |
This option determines whether the compiler checks bounds for memory access through pointers. It enables checking of all indirect accesses through pointers, and all array accesses.
The compiler may optimize these checks away when it can determine that an access is safe.
When rw or write is specified, the [Q]check-pointers-undimensioned option is set and dimensioned and undimensioned arrays are checked.
If you do not want undimensioned arrays checked, you must specify option the negative form of the option (see Syntax above).
This pointer checker feature requires installation of another product. For more information, see Feature Requirements.
Visual Studio: Code Generation > Check Pointers
Eclipse: Code Generation > Check Pointers
Xcode: None
None