diff options
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPC.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPC.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPC.h b/llvm/lib/Target/PowerPC/PowerPC.h index cd0f1d7c34c..16b1ea32650 100644 --- a/llvm/lib/Target/PowerPC/PowerPC.h +++ b/llvm/lib/Target/PowerPC/PowerPC.h @@ -15,12 +15,18 @@ #ifndef TARGET_POWERPC_H #define TARGET_POWERPC_H +#include <iosfwd> + namespace llvm { class FunctionPass; +class TargetMachine; FunctionPass *createPowerPCPEI(); FunctionPass *createPPCBranchSelectionPass(); +FunctionPass *createPPC32ISelSimple(TargetMachine &TM); +FunctionPass *createPPC64ISelSimple(TargetMachine &TM); +FunctionPass *createPPC32AsmPrinter(std::ostream &OS,TargetMachine &TM); } // end namespace llvm; |