summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-08-19 23:00:07 +0000
committerDavid Greene <greened@obbligato.org>2009-08-19 23:00:07 +0000
commit62b666f0b88aa45a0d4d53873fbe9fbaaad1e1d0 (patch)
tree545ecf35b9f6fa365bd1d6a64713a9452f01ef3e
parentd6f7af652e6d9c46f23d692176872236b06b9d53 (diff)
downloadbcm5719-llvm-62b666f0b88aa45a0d4d53873fbe9fbaaad1e1d0.tar.gz
bcm5719-llvm-62b666f0b88aa45a0d4d53873fbe9fbaaad1e1d0.zip
Remove an unnecessary include. Now we won't have circular include
problems later on. llvm-svn: 79487
-rw-r--r--llvm/include/llvm/CodeGen/MachineFunctionPass.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineFunctionPass.h b/llvm/include/llvm/CodeGen/MachineFunctionPass.h
index 60460afae7a..bac110316d4 100644
--- a/llvm/include/llvm/CodeGen/MachineFunctionPass.h
+++ b/llvm/include/llvm/CodeGen/MachineFunctionPass.h
@@ -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
OpenPOWER on IntegriCloud