Intel® C++ Compiler XE 13.1 User and Reference Guides
Enable use of ANSI aliasing rules in optimizations.
Windows: None
Linux: Language > Enable Use of ANSI Aliasing Rules in Optimizations
OS X: Language > Enable ANSI Aliasing
All
Linux and OS X: | -ansi-alias -no-ansi-alias |
Windows: | /Qansi-alias /Qansi-alias- |
None
-no-ansi-alias or /Qansi-alias- |
Disable use of ANSI aliasing rules in optimizations. |
This option tells the compiler to assume that the program adheres to ISO C Standard aliasability rules.
If your program adheres to these rules, then this option allows the compiler to optimize more aggressively. If it doesn't adhere to these rules, then it can cause the compiler to generate incorrect code.
When you specify -ansi-alias or /Qansi-alias, the ansi-alias checker is enabled by default. To disable the ansi-alias checker, you must specify -no-ansi-alias-check (Linux OS and OS X) or /Qansi-alias-check- (Windows OS).
Linux and OS X: -fstrict-aliasing
Windows: None