diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2016-01-27 16:32:26 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2016-01-27 16:32:26 +0000 |
commit | f9172fd4ac4c86f5f04220d7d748eace96fd1a95 (patch) | |
tree | 9681499dc21160c4eb78d6dae8e89c9e06470389 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp | |
parent | c67cf31f5c549375c7dcbb2e331ecf93906f7e55 (diff) | |
download | bcm5719-llvm-f9172fd4ac4c86f5f04220d7d748eace96fd1a95.tar.gz bcm5719-llvm-f9172fd4ac4c86f5f04220d7d748eace96fd1a95.zip |
Rename TargetSelectionDAGInfo into SelectionDAGTargetInfo and move it to CodeGen/
It's a SelectionDAG thing, not a Target thing.
llvm-svn: 258939
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp new file mode 100644 index 00000000000..55f70f7d9fd --- /dev/null +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp @@ -0,0 +1,17 @@ +//===-- SelectionDAGTargetInfo.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 SelectionDAGTargetInfo class. +// +//===----------------------------------------------------------------------===// + +#include "llvm/CodeGen/SelectionDAGTargetInfo.h" +using namespace llvm; + +SelectionDAGTargetInfo::~SelectionDAGTargetInfo() {} |