14a16efa3SDimitry Andric //===-- R600MachineFunctionInfo.cpp - R600 Machine Function Info-*- C++ -*-===// 24a16efa3SDimitry Andric // 3e6d15924SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4e6d15924SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5e6d15924SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 64a16efa3SDimitry Andric // 74a16efa3SDimitry Andric /// \file 84a16efa3SDimitry Andric //===----------------------------------------------------------------------===// 94a16efa3SDimitry Andric 104a16efa3SDimitry Andric #include "R600MachineFunctionInfo.h" 11e3b55780SDimitry Andric #include "R600Subtarget.h" 124a16efa3SDimitry Andric 134a16efa3SDimitry Andric using namespace llvm; 144a16efa3SDimitry Andric R600MachineFunctionInfo(const Function & F,const R600Subtarget * STI)15e3b55780SDimitry AndricR600MachineFunctionInfo::R600MachineFunctionInfo(const Function &F, 16e3b55780SDimitry Andric const R600Subtarget *STI) 17e3b55780SDimitry Andric : AMDGPUMachineFunction(F, *STI) {} 18