Trivial cleanup

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-04-24 18:35:51 +00:00
parent 961f7b4e4f
commit ec8aae3e11

View File

@ -150,14 +150,14 @@ namespace {
void visitOneOperand(Instruction &I, Constant* CV, unsigned opNum,
Instruction& insertBefore); // iworks on one operand
};
// Register the pass...
RegisterOpt<PreSelection> X("preselect",
"Specialize LLVM code for a target machine",
createPreSelectionPass);
} // end anonymous namespace
// Register the pass...
static RegisterOpt<PreSelection> X("preselect",
"Specialize LLVM code for a target machine",
createPreSelectionPass);
//------------------------------------------------------------------------------
// Helper functions used by methods of class PreSelection
//------------------------------------------------------------------------------