2017-09-13 21:15:20 +00:00
|
|
|
//===- SelectionDAGTargetInfo.cpp - SelectionDAG Info ---------------------===//
|
2010-04-16 21:12:11 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-01-27 16:32:26 +00:00
|
|
|
// This implements the SelectionDAGTargetInfo class.
|
2010-04-16 21:12:11 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-01-27 16:32:26 +00:00
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
2017-09-13 21:15:20 +00:00
|
|
|
|
2010-04-16 21:12:11 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2017-09-13 21:15:20 +00:00
|
|
|
SelectionDAGTargetInfo::~SelectionDAGTargetInfo() = default;
|