So, with the knowledge that the Express Edition contains optimizations, it should be best for everyone to set the following as such:
Configuration Properties->Optimizations->Optimizations->Maximize Speed
Configuration Properties->Optimizations->Favor Size or Speed->Favor Fast Code
It should optimize code like this, for example:
int x = 3;
int y = 8;
int z = 0;
for ( int i = 0; i <= 10; ++i )
{
z += x * y;
}
becomes this:
int x = 3;
int y = 8;
int z = 0;
int sum = x * y;
for ( int i = 0; i <= 10; ++i )
{
z += sum;
}
From that simple example to advanced assembly optimizations, it should benefit everyone to enable those options.
Though, I'm still curious if these would be beneficial:
Configuration Properties->Whole Program Optimization->Use Link Time Code Generation
Configuration Properties->Optimizations->Enable Intrinsic Functions->Yes
Objections? Opinions? Thanks? Death threats?