2010-04-16 23:12:11 +02: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-11 19:31:57 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2010-04-16 23:12:11 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-05-11 19:31:57 +02:00
|
|
|
TargetSelectionDAGInfo::TargetSelectionDAGInfo(const TargetMachine &TM)
|
|
|
|
: TD(TM.getTargetData()) {
|
2010-04-16 23:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TargetSelectionDAGInfo::~TargetSelectionDAGInfo() {
|
|
|
|
}
|