[llvm-commits] [llvm] r79487 - /llvm/trunk/include/llvm/CodeGen/MachineFunctionPass.h

David Greene greened at obbligato.org
Wed Aug 19 16:00:07 PDT 2009


Author: greened
Date: Wed Aug 19 18:00:07 2009
New Revision: 79487

URL: http://llvm.org/viewvc/llvm-project?rev=79487&view=rev
Log:

Remove an unnecessary include.  Now we won't have circular include
problems later on.

Modified:
    llvm/trunk/include/llvm/CodeGen/MachineFunctionPass.h

Modified: llvm/trunk/include/llvm/CodeGen/MachineFunctionPass.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineFunctionPass.h?rev=79487&r1=79486&r2=79487&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineFunctionPass.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineFunctionPass.h Wed Aug 19 18:00:07 2009
@@ -20,10 +20,11 @@
 #define LLVM_CODEGEN_MACHINE_FUNCTION_PASS_H
 
 #include "llvm/Pass.h"
-#include "llvm/CodeGen/MachineFunction.h"
 
 namespace llvm {
 
+class MachineFunction;
+
 /// MachineFunctionPass - This class adapts the FunctionPass interface to
 /// allow convenient creation of passes that operate on the MachineFunction
 /// representation. Instead of overriding runOnFunction, subclasses





More information about the llvm-commits mailing list