2010-04-17 05:12:11 +08:00
|
|
|
//===-- 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"
|
2010-05-12 01:31:57 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2010-04-17 05:12:11 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-06-07 03:04:48 +08:00
|
|
|
TargetSelectionDAGInfo::TargetSelectionDAGInfo(const DataLayout *DL)
|
|
|
|
: DL(DL) {
|
2010-04-17 05:12:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TargetSelectionDAGInfo::~TargetSelectionDAGInfo() {
|
|
|
|
}
|