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
This commit is contained in:
Chandler Carruth 2010-04-17 08:50:29 +00:00
parent 65de1b9eb3
commit 2329d66a9f
4 changed files with 18 additions and 18 deletions

View File

@ -1,4 +1,4 @@
//===-- CellSPUSelectionDAGInfo.cpp - CellSPU SelectionDAG Info -----------===//
//===-- SPUSelectionDAGInfo.cpp - CellSPU SelectionDAG Info ---------------===//
//
// The LLVM Compiler Infrastructure
//
@ -7,16 +7,16 @@
//
//===----------------------------------------------------------------------===//
//
// This file implements the CellSPUSelectionDAGInfo class.
// This file implements the SPUSelectionDAGInfo class.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "cellspu-selectiondag-info"
#include "CellSPUSelectionDAGInfo.h"
#include "SPUSelectionDAGInfo.h"
using namespace llvm;
CellSPUSelectionDAGInfo::CellSPUSelectionDAGInfo() {
SPUSelectionDAGInfo::SPUSelectionDAGInfo() {
}
CellSPUSelectionDAGInfo::~CellSPUSelectionDAGInfo() {
SPUSelectionDAGInfo::~SPUSelectionDAGInfo() {
}

View File

@ -1,4 +1,4 @@
//===-- CellSPUSelectionDAGInfo.h - CellSPU SelectionDAG Info ---*- C++ -*-===//
//===-- SPUSelectionDAGInfo.h - CellSPU SelectionDAG Info -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -18,10 +18,10 @@
namespace llvm {
class CellSPUSelectionDAGInfo : public TargetSelectionDAGInfo {
class SPUSelectionDAGInfo : public TargetSelectionDAGInfo {
public:
CellSPUSelectionDAGInfo();
~CellSPUSelectionDAGInfo();
SPUSelectionDAGInfo();
~SPUSelectionDAGInfo();
};
}

View File

@ -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() {
}

View File

@ -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();
};
}