summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PowerPC.h
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2004-08-11 07:40:04 +0000
committerNate Begeman <natebegeman@mac.com>2004-08-11 07:40:04 +0000
commitf17ea0f7b7dd89f65e3bec923fdc4434ebef8501 (patch)
tree30fbfbff383d26a5a542240155ed8ca8b63fea63 /llvm/lib/Target/PowerPC/PowerPC.h
parent6f0291792e3994dfad9d548cbe1e32ee4a7bc948 (diff)
downloadbcm5719-llvm-f17ea0f7b7dd89f65e3bec923fdc4434ebef8501.tar.gz
bcm5719-llvm-f17ea0f7b7dd89f65e3bec923fdc4434ebef8501.zip
Clean up 32/64bit and Darwin/AIX split. Next steps: 64 bit ISel, AIX asm printer.
llvm-svn: 15662
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPC.h')
-rw-r--r--llvm/lib/Target/PowerPC/PowerPC.h6
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;
OpenPOWER on IntegriCloud