109467b48Spatrick //===-- MSP430MachineFunctionInfo.cpp - MSP430 machine function info ------===// 209467b48Spatrick // 309467b48Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 409467b48Spatrick // See https://llvm.org/LICENSE.txt for license information. 509467b48Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 609467b48Spatrick // 709467b48Spatrick //===----------------------------------------------------------------------===// 809467b48Spatrick 909467b48Spatrick #include "MSP430MachineFunctionInfo.h" 1009467b48Spatrick 1109467b48Spatrick using namespace llvm; 1209467b48Spatrick anchor()1309467b48Spatrickvoid MSP430MachineFunctionInfo::anchor() { } 14*d415bd75Srobert clone(BumpPtrAllocator & Allocator,MachineFunction & DestMF,const DenseMap<MachineBasicBlock *,MachineBasicBlock * > & Src2DstMBB) const15*d415bd75SrobertMachineFunctionInfo *MSP430MachineFunctionInfo::clone( 16*d415bd75Srobert BumpPtrAllocator &Allocator, MachineFunction &DestMF, 17*d415bd75Srobert const DenseMap<MachineBasicBlock *, MachineBasicBlock *> &Src2DstMBB) 18*d415bd75Srobert const { 19*d415bd75Srobert return DestMF.cloneInfo<MSP430MachineFunctionInfo>(*this); 20*d415bd75Srobert } 21