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 | 2329d66a9f961b5ec463640f67ac451645aa6093 (patch) | |
tree | 5eef4b6a0b0c45266da084ac4e6ac315cf3a0315 /lib/Target/PowerPC | |
parent | 65de1b9eb373e196681bfc32f49c40f0d0561522 (diff) | |
download | external_llvm-2329d66a9f961b5ec463640f67ac451645aa6093.zip external_llvm-2329d66a9f961b5ec463640f67ac451645aa6093.tar.gz external_llvm-2329d66a9f961b5ec463640f67ac451645aa6093.tar.bz2 |
Name these stub files consistently with the SPU and PPC targets' conventions.
Also rename the classes appropriately. The CMake build already used these
names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101631 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r-- | lib/Target/PowerPC/PPCSelectionDAGInfo.cpp (renamed from lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp) | 10 | ||||
-rw-r--r-- | lib/Target/PowerPC/PPCSelectionDAGInfo.h (renamed from lib/Target/PowerPC/PowerPCSelectionDAGInfo.h) | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp b/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp index b1f4a71..c0004a9 100644 --- a/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp +++ b/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/lib/Target/PowerPC/PowerPCSelectionDAGInfo.h b/lib/Target/PowerPC/PPCSelectionDAGInfo.h index e40b02c..3ad3418 100644 --- a/lib/Target/PowerPC/PowerPCSelectionDAGInfo.h +++ b/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(); }; } |