llvm-6502/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp
Dan Gohman 8c0e89925d 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
2010-04-16 21:12:11 +00:00

22 lines
661 B
C++

//===-- 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() {
}