Visible to Intel only — GUID: GUID-7E8868FF-51FD-4BAD-9E97-1CE6B96D50B6
Visible to Intel only — GUID: GUID-7E8868FF-51FD-4BAD-9E97-1CE6B96D50B6
check-pointers, Qcheck-pointers
Determines whether the compiler checks bounds for memory access through pointers.
Linux: |
-check-pointers=keyword |
macOS: |
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