Remove two unused options.

llvm-svn: 70457
This commit is contained in:
Bill Wendling 2009-04-30 00:55:13 +00:00
parent 5ab42e93c4
commit 50e41a4d86
1 changed files with 0 additions and 2 deletions

View File

@ -261,8 +261,6 @@ bool BackendConsumer::AddEmitPasses(std::string &Error) {
switch (CompileOpts.OptimizationLevel) { switch (CompileOpts.OptimizationLevel) {
default: break; default: break;
case 0: OptLevel = CodeGenOpt::None; break; case 0: OptLevel = CodeGenOpt::None; break;
case 1: OptLevel = CodeGenOpt::One; break;
case 2: OptLevel = CodeGenOpt::Two; break;
case 3: OptLevel = CodeGenOpt::Aggressive; break; case 3: OptLevel = CodeGenOpt::Aggressive; break;
} }