diff options
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 b1f4a71535..c0004a9b41 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 e40b02cda1..3ad3418440 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(); }; } |