xref: /freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp (revision bdd1243df58e60e85101c09001d9812a789b6bc4)
10b57cec5SDimitry Andric //===-- R600MachineFunctionInfo.cpp - R600 Machine Function Info-*- C++ -*-===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric /// \file
80b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
90b57cec5SDimitry Andric 
100b57cec5SDimitry Andric #include "R600MachineFunctionInfo.h"
11*bdd1243dSDimitry Andric #include "R600Subtarget.h"
120b57cec5SDimitry Andric 
130b57cec5SDimitry Andric using namespace llvm;
140b57cec5SDimitry Andric 
R600MachineFunctionInfo(const Function & F,const R600Subtarget * STI)15*bdd1243dSDimitry Andric R600MachineFunctionInfo::R600MachineFunctionInfo(const Function &F,
16*bdd1243dSDimitry Andric                                                  const R600Subtarget *STI)
17*bdd1243dSDimitry Andric     : AMDGPUMachineFunction(F, *STI) {}
18