Path: blob/main/contrib/llvm-project/llvm/lib/Target/M68k/M68kMachineFunction.cpp
35266 views
//===-- M68kMachineFunctionInfo.cpp - M68k private data ---------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#include "M68kMachineFunction.h"910#include "M68kInstrInfo.h"11#include "M68kSubtarget.h"1213#include "llvm/CodeGen/MachineInstrBuilder.h"14#include "llvm/CodeGen/MachineRegisterInfo.h"15#include "llvm/IR/Function.h"1617using namespace llvm;1819void M68kMachineFunctionInfo::anchor() {}2021MachineFunctionInfo *M68kMachineFunctionInfo::clone(22BumpPtrAllocator &Allocator, MachineFunction &DestMF,23const DenseMap<MachineBasicBlock *, MachineBasicBlock *> &Src2DstMBB)24const {25return DestMF.cloneInfo<M68kMachineFunctionInfo>(*this);26}272829