target constructors are never used

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32099 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-12-01 21:59:37 +00:00
parent ba59a1e453
commit cd950a5308
2 changed files with 2 additions and 8 deletions

View File

@ -177,10 +177,7 @@ void Optimize(Module* M) {
const PassInfo *Opt = OptimizationList[i];
if (Opt->getNormalCtor())
addPass(Passes, Opt->getNormalCtor()());
else if (Opt->getTargetCtor()) {
assert(target.get() && "Could not allocate target machine!");
addPass(Passes, Opt->getTargetCtor()(*target.get()));
} else
else
std::cerr << "llvm-ld: cannot create pass: " << Opt->getPassName()
<< "\n";
}

View File

@ -224,10 +224,7 @@ int main(int argc, char **argv) {
Pass *P = 0;
if (PassInf->getNormalCtor())
P = PassInf->getNormalCtor()();
else if (PassInf->getTargetCtor()) {
assert(target.get() && "Could not allocate target machine!");
P = PassInf->getTargetCtor()(*target.get());
} else
else
llvm_cerr << argv[0] << ": cannot create pass: "
<< PassInf->getPassName() << "\n";
if (P) {