1*700637cbSDimitry Andric //===----------------------------------------------------------------------===// 2*700637cbSDimitry Andric // 3*700637cbSDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*700637cbSDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5*700637cbSDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*700637cbSDimitry Andric // 7*700637cbSDimitry Andric //===----------------------------------------------------------------------===// 8*700637cbSDimitry Andric 9*700637cbSDimitry Andric #include "MSP430SelectionDAGInfo.h" 10*700637cbSDimitry Andric 11*700637cbSDimitry Andric #define GET_SDNODE_DESC 12*700637cbSDimitry Andric #include "MSP430GenSDNodeInfo.inc" 13*700637cbSDimitry Andric 14*700637cbSDimitry Andric using namespace llvm; 15*700637cbSDimitry Andric MSP430SelectionDAGInfo()16*700637cbSDimitry AndricMSP430SelectionDAGInfo::MSP430SelectionDAGInfo() 17*700637cbSDimitry Andric : SelectionDAGGenTargetInfo(MSP430GenSDNodeInfo) {} 18*700637cbSDimitry Andric 19*700637cbSDimitry Andric MSP430SelectionDAGInfo::~MSP430SelectionDAGInfo() = default; 20