2017-09-13 21:15:20 +00:00
|
|
|
//===- SelectionDAGTargetInfo.cpp - SelectionDAG Info ---------------------===//
|
2010-04-16 21:12:11 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-04-16 21:12:11 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
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;
|