mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
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
This commit is contained in:
parent
42337931b2
commit
c03e85229d
@ -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() {
|
||||
}
|
@ -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();
|
||||
};
|
||||
|
||||
}
|
@ -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() {
|
||||
}
|
@ -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();
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user