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 | fe8017b12f996ebfdc9ef29dd936e607bd4812db (patch) | |
tree | 5225b9a32c358735c881b39da3a1cf1d7e7d0373 /lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp | |
parent | 5002ea3266303651474a1a3034f55e71e79dc869 (diff) | |
download | external_llvm-fe8017b12f996ebfdc9ef29dd936e607bd4812db.tar.gz external_llvm-fe8017b12f996ebfdc9ef29dd936e607bd4812db.tar.bz2 external_llvm-fe8017b12f996ebfdc9ef29dd936e607bd4812db.zip |
Create a new TargetSelectionDAGInfo class. This will eventually acquire
SelectionDAG-specific parts of TargetLowering.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp b/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp new file mode 100644 index 0000000000..d20477fd89 --- /dev/null +++ b/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() { +} |