1284677Sdim//===-- R600MachineFunctionInfo.cpp - R600 Machine Function Info-*- C++ -*-===//
2284677Sdim//
3284677Sdim//                     The LLVM Compiler Infrastructure
4284677Sdim//
5284677Sdim// This file is distributed under the University of Illinois Open Source
6284677Sdim// License. See LICENSE.TXT for details.
7284677Sdim//
8284677Sdim/// \file
9284677Sdim//===----------------------------------------------------------------------===//
10284677Sdim
11284677Sdim#include "R600MachineFunctionInfo.h"
12284677Sdim
13284677Sdimusing namespace llvm;
14284677Sdim
15284677Sdim
16284677Sdim// Pin the vtable to this file.
17284677Sdimvoid R600MachineFunctionInfo::anchor() {}
18284677Sdim
19284677SdimR600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
20284677Sdim  : AMDGPUMachineFunction(MF) { }
21