diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-14 21:09:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-14 21:09:28 +0000 |
commit | 0927edf815169c8cae86d2ff1a874ca223d1e392 (patch) | |
tree | 1d291ffe619c85698c6a9b256f119267cad7bb1d /llvm/lib/Target/PowerPC/PPC.h | |
parent | de16ca8ecc2a397984864c2d5fb2e056af4c8600 (diff) | |
download | bcm5719-llvm-0927edf815169c8cae86d2ff1a874ca223d1e392.tar.gz bcm5719-llvm-0927edf815169c8cae86d2ff1a874ca223d1e392.zip |
fix PPC.h to not pull in TargetMachine.h
llvm-svn: 119072
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPC.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPC.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPC.h b/llvm/lib/Target/PowerPC/PPC.h index 67e3a4ad677..b4644a18506 100644 --- a/llvm/lib/Target/PowerPC/PPC.h +++ b/llvm/lib/Target/PowerPC/PPC.h @@ -18,12 +18,12 @@ // GCC #defines PPC on Linux but we use it as our namespace name #undef PPC -#include "llvm/Target/TargetMachine.h" - namespace llvm { class PPCTargetMachine; class FunctionPass; class formatted_raw_ostream; + class JITCodeEmitter; + class Target; FunctionPass *createPPCBranchSelectionPass(); FunctionPass *createPPCISelDag(PPCTargetMachine &TM); |