diff options
| author | Dan Gohman <gohman@apple.com> | 2010-04-16 21:12:11 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-04-16 21:12:11 +0000 |
| commit | c4759a5b97d37baaa6625dc0b3d1aaa9180054c2 (patch) | |
| tree | dcc6858ecc683a3bb3be22364943e582db37e8c5 /llvm/lib/CodeGen/SelectionDAG | |
| parent | 3cff64ab58d164653c4adf7f78cdc7ca07310f9f (diff) | |
| download | bcm5719-llvm-c4759a5b97d37baaa6625dc0b3d1aaa9180054c2.tar.gz bcm5719-llvm-c4759a5b97d37baaa6625dc0b3d1aaa9180054c2.zip | |
Create a new TargetSelectionDAGInfo class. This will eventually acquire
SelectionDAG-specific parts of TargetLowering.
llvm-svn: 101537
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt b/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt index 80c7d7c9eb9..0cfd5e1d7e2 100644 --- a/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt +++ b/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt @@ -20,6 +20,7 @@ add_llvm_library(LLVMSelectionDAG SelectionDAGISel.cpp SelectionDAGPrinter.cpp TargetLowering.cpp + TargetSelectionDAGInfo.cpp ) target_link_libraries (LLVMSelectionDAG LLVMAnalysis LLVMAsmPrinter LLVMCodeGen) diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp new file mode 100644 index 00000000000..d20477fd890 --- /dev/null +++ b/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp @@ -0,0 +1,21 @@ +//===-- TargetSelectionDAGInfo.cpp - SelectionDAG Info --------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This implements the TargetSelectionDAGInfo class. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Target/TargetSelectionDAGInfo.h" +using namespace llvm; + +TargetSelectionDAGInfo::TargetSelectionDAGInfo() { +} + +TargetSelectionDAGInfo::~TargetSelectionDAGInfo() { +} |

