no really, I can spell!
[oota-llvm.git] / include / llvm / CodeGen / MachineFunctionPass.h
index 7429e7b96c40eb0e165a02fe6cb425106cfee323..6b5e64abc46c92a7d4a876bb9b62b5175af5129c 100644 (file)
@@ -2,8 +2,8 @@
 //
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
 //
 
 namespace llvm {
 
+  // FIXME: This pass should declare that the pass does not invalidate any LLVM
+  // passes.
 struct MachineFunctionPass : public FunctionPass {
+  explicit MachineFunctionPass(intptr_t ID) : FunctionPass(ID) {}
+  explicit MachineFunctionPass(void *ID) : FunctionPass(ID) {}
 
-  MachineFunctionPass(intptr_t ID) : FunctionPass(ID) {}
-
+protected:
   /// runOnMachineFunction - This method must be overloaded to perform the
   /// desired machine code transformation or analysis.
   ///
   virtual bool runOnMachineFunction(MachineFunction &MF) = 0;
 
-  // FIXME: This pass should declare that the pass does not invalidate any LLVM
-  // passes.
-  virtual bool runOnFunction(Function &F) {
-    return runOnMachineFunction(MachineFunction::get(&F));
-  }
-  
-  virtual void virtfn();  // out of line virtual fn to give class a home.
+public:
+  bool runOnFunction(Function &F);
 };
 
 } // End llvm namespace