Change meaning of optimization levels: -O0 now means 'no optimization' like with

other compilers.
This commit is contained in:
Frits van Bommel 2009-03-29 15:51:14 +02:00
parent e129494812
commit 257d305032
2 changed files with 9 additions and 14 deletions

View file

@ -121,9 +121,9 @@ int linkExecutable(const char* argv0)
{
case 0:
args.push_back("-disable-opt");
args.push_back("-globaldce");
break;
case 1:
args.push_back("-globaldce");
args.push_back("-disable-opt");
args.push_back("-globaldce");
args.push_back("-mem2reg");