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/PPCSelectionDAGInfo.cpp | |
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/PPCSelectionDAGInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp b/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp new file mode 100644 index 00000000000..c0004a9b419 --- /dev/null +++ b/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp @@ -0,0 +1,22 @@ +//===-- PPCSelectionDAGInfo.cpp - PowerPC SelectionDAG Info ---------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file implements the PPCSelectionDAGInfo class. +// +//===----------------------------------------------------------------------===// + +#define DEBUG_TYPE "powerpc-selectiondag-info" +#include "PPCSelectionDAGInfo.h" +using namespace llvm; + +PPCSelectionDAGInfo::PPCSelectionDAGInfo() { +} + +PPCSelectionDAGInfo::~PPCSelectionDAGInfo() { +} |