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