Tells the compiler that function arguments cannot alias each other and cannot alias global storage.
Linux and macOS: | -fargument-noalias-global |
Windows: | None |
None
OFF |
Function arguments can alias each other and can alias global storage. |
This option tells the compiler that function arguments cannot alias each other and they cannot alias global storage.
If you only want to prevent function arguments from being able to alias each other, specify option -fargument-noalias.
None