From ec8aae3e11b6283040618fee0d0c9dccea1cf81a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 24 Apr 2003 18:35:51 +0000 Subject: [PATCH] Trivial cleanup git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5899 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SparcV9/SparcV9PreSelection.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Target/SparcV9/SparcV9PreSelection.cpp b/lib/Target/SparcV9/SparcV9PreSelection.cpp index b4bbc77a071..216091787f1 100644 --- a/lib/Target/SparcV9/SparcV9PreSelection.cpp +++ b/lib/Target/SparcV9/SparcV9PreSelection.cpp @@ -150,14 +150,14 @@ namespace { void visitOneOperand(Instruction &I, Constant* CV, unsigned opNum, Instruction& insertBefore); // iworks on one operand }; + + // Register the pass... + RegisterOpt X("preselect", + "Specialize LLVM code for a target machine", + createPreSelectionPass); } // end anonymous namespace -// Register the pass... -static RegisterOpt X("preselect", - "Specialize LLVM code for a target machine", - createPreSelectionPass); - //------------------------------------------------------------------------------ // Helper functions used by methods of class PreSelection //------------------------------------------------------------------------------