2017-12-18 15:10:56 -05:00
|
|
|
//===- SelectionDAGTargetInfo.cpp - SelectionDAG Info ---------------------===//
|
2010-05-04 12:11:02 -04:00
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
2016-07-23 16:41:05 -04:00
|
|
|
// This implements the SelectionDAGTargetInfo class.
|
2010-05-04 12:11:02 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2016-07-23 16:41:05 -04:00
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
2017-12-18 15:10:56 -05:00
|
|
|
|
2010-05-04 12:11:02 -04:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
2017-12-18 15:10:56 -05:00
|
|
|
SelectionDAGTargetInfo::~SelectionDAGTargetInfo() = default;
|