summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-10-16 05:39:50 +0000
committerNate Begeman <natebegeman@mac.com>2005-10-16 05:39:50 +0000
commit6cca84e43c934344051252d4bc3a2f11d89ce1a2 (patch)
tree7f1a383eea6c66f519d3bb98be0dd9bc76375c8d /llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
parent825298b060b9194a591b547a6d4e067db2f51639 (diff)
downloadbcm5719-llvm-6cca84e43c934344051252d4bc3a2f11d89ce1a2.tar.gz
bcm5719-llvm-6cca84e43c934344051252d4bc3a2f11d89ce1a2.zip
More PPC32 -> PPC changes, as well as merging some classes that were
redundant after the change. llvm-svn: 23759
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
index 9c356886bb6..9b5c7d6444f 100644
--- a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
@@ -1,4 +1,4 @@
-//===-- PPC32ISelDAGToDAG.cpp - PPC32 pattern matching inst selector ------===//
+//===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
//
// The LLVM Compiler Infrastructure
//
@@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
-// This file defines a pattern matching instruction selector for 32 bit PowerPC,
+// This file defines a pattern matching instruction selector for PowerPC,
// converting from a legalized dag to a PPC dag.
//
//===----------------------------------------------------------------------===//
@@ -37,11 +37,11 @@ namespace {
/// instructions for SelectionDAG operations.
///
class PPC32DAGToDAGISel : public SelectionDAGISel {
- PPC32TargetLowering PPC32Lowering;
+ PPCTargetLowering PPCLowering;
unsigned GlobalBaseReg;
public:
PPC32DAGToDAGISel(TargetMachine &TM)
- : SelectionDAGISel(PPC32Lowering), PPC32Lowering(TM) {}
+ : SelectionDAGISel(PPCLowering), PPCLowering(TM) {}
virtual bool runOnFunction(Function &Fn) {
// Make sure we re-emit a set of the global base reg if necessary
OpenPOWER on IntegriCloud