aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-16 23:04:22 +0000
committerDan Gohman <gohman@apple.com>2010-04-16 23:04:22 +0000
commit8b8dc1cdcf5f34b66c3f929186168102f3149cb1 (patch)
tree2e1cb690d540c9ea8ad5eeb270e59dce47c056e1 /lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp
parent01d31cff930935cd8c8a16ccc1e4315bed5e4f17 (diff)
downloadexternal_llvm-8b8dc1cdcf5f34b66c3f929186168102f3149cb1.tar.gz
external_llvm-8b8dc1cdcf5f34b66c3f929186168102f3149cb1.tar.bz2
external_llvm-8b8dc1cdcf5f34b66c3f929186168102f3149cb1.zip
Add skeleton target-specific SelectionDAGInfo files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp')
-rw-r--r--lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp b/lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp
new file mode 100644
index 0000000000..86ceb592df
--- /dev/null
+++ b/lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp
@@ -0,0 +1,22 @@
+//===-- CellSPUSelectionDAGInfo.cpp - CellSPU 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 CellSPUSelectionDAGInfo class.
+//
+//===----------------------------------------------------------------------===//
+
+#define DEBUG_TYPE "cellspu-selectiondag-info"
+#include "CellSPUSelectionDAGInfo.h"
+using namespace llvm;
+
+CellSPUSelectionDAGInfo::CellSPUSelectionDAGInfo() {
+}
+
+CellSPUSelectionDAGInfo::~CellSPUSelectionDAGInfo() {
+}