109467b48Spatrick //=== SystemZMachineFunctionInfo.cpp - SystemZ 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 "SystemZMachineFunctionInfo.h" 1009467b48Spatrick 1109467b48Spatrick using namespace llvm; 1209467b48Spatrick 1309467b48Spatrick 1409467b48Spatrick // pin vtable to this file anchor()1509467b48Spatrickvoid SystemZMachineFunctionInfo::anchor() {} 1609467b48Spatrick clone(BumpPtrAllocator & Allocator,MachineFunction & DestMF,const DenseMap<MachineBasicBlock *,MachineBasicBlock * > & Src2DstMBB) const17*d415bd75SrobertMachineFunctionInfo *SystemZMachineFunctionInfo::clone( 18*d415bd75Srobert BumpPtrAllocator &Allocator, MachineFunction &DestMF, 19*d415bd75Srobert const DenseMap<MachineBasicBlock *, MachineBasicBlock *> &Src2DstMBB) 20*d415bd75Srobert const { 21*d415bd75Srobert return DestMF.cloneInfo<SystemZMachineFunctionInfo>(*this); 22*d415bd75Srobert } 23