diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-04-17 08:50:29 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-04-17 08:50:29 +0000 |
commit | ca0a53ac52992973d9aad654f4d8e2961d174de4 (patch) | |
tree | 502e88c763e77dc1a96609877e0ff4816e7d21f4 /llvm/lib/Target/PowerPC | |
parent | 7f5088e6defece71bf3153bf037531f68f88d565 (diff) | |
download | bcm5719-llvm-ca0a53ac52992973d9aad654f4d8e2961d174de4.tar.gz bcm5719-llvm-ca0a53ac52992973d9aad654f4d8e2961d174de4.zip |
Name these stub files consistently with the SPU and PPC targets' conventions.
Also rename the classes appropriately. The CMake build already used these
names.
llvm-svn: 101631
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp (renamed from llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp) | 10 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.h (renamed from llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.h) | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp b/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp index b1f4a71535c..c0004a9b419 100644 --- a/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp @@ -1,4 +1,4 @@ -//===-- PowerPCSelectionDAGInfo.cpp - PowerPC SelectionDAG Info -----------===// +//===-- PPCSelectionDAGInfo.cpp - PowerPC SelectionDAG Info ---------------===// // // The LLVM Compiler Infrastructure // @@ -7,16 +7,16 @@ // //===----------------------------------------------------------------------===// // -// This file implements the PowerPCSelectionDAGInfo class. +// This file implements the PPCSelectionDAGInfo class. // //===----------------------------------------------------------------------===// #define DEBUG_TYPE "powerpc-selectiondag-info" -#include "PowerPCSelectionDAGInfo.h" +#include "PPCSelectionDAGInfo.h" using namespace llvm; -PowerPCSelectionDAGInfo::PowerPCSelectionDAGInfo() { +PPCSelectionDAGInfo::PPCSelectionDAGInfo() { } -PowerPCSelectionDAGInfo::~PowerPCSelectionDAGInfo() { +PPCSelectionDAGInfo::~PPCSelectionDAGInfo() { } diff --git a/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.h b/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.h index e40b02cda18..3ad34184408 100644 --- a/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.h +++ b/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.h @@ -1,4 +1,4 @@ -//===-- PowerPCSelectionDAGInfo.h - PowerPC SelectionDAG Info ---*- C++ -*-===// +//===-- PPCSelectionDAGInfo.h - PowerPC SelectionDAG Info -------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -18,10 +18,10 @@ namespace llvm { -class PowerPCSelectionDAGInfo : public TargetSelectionDAGInfo { +class PPCSelectionDAGInfo : public TargetSelectionDAGInfo { public: - PowerPCSelectionDAGInfo(); - ~PowerPCSelectionDAGInfo(); + PPCSelectionDAGInfo(); + ~PPCSelectionDAGInfo(); }; } |