2017-12-18 15:10:56 -05:00
|
|
|
//===- SelectionDAGTargetInfo.cpp - SelectionDAG Info ---------------------===//
|
2010-05-04 12:11:02 -04:00
|
|
|
//
|
2019-08-20 16:50:12 -04: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-05-04 12:11:02 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
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;
|