add alias support to bitcode
[oota-llvm.git] / include / llvm / CodeGen / MachineFunctionPass.h
index 390dcb8562566b7bc6fb62f93bb0dc69855d22aa..77af52a34748f47c3a54c13e2857e3f77fcba5d5 100644 (file)
@@ -1,10 +1,10 @@
 //===-- MachineFunctionPass.h - Pass for MachineFunctions --------*-C++ -*-===//
-// 
+//
 //                     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 defines the MachineFunctionPass class.  MachineFunctionPass's are
@@ -33,10 +33,11 @@ struct MachineFunctionPass : public FunctionPass {
 
   // 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.
 };
 
 } // End llvm namespace