2012-12-11 21:25:42 +00:00
|
|
|
//===-- R600MachineFunctionInfo.cpp - R600 Machine Function Info-*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "R600MachineFunctionInfo.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2013-11-18 09:31:53 +00:00
|
|
|
|
2013-11-19 00:57:56 +00:00
|
|
|
// Pin the vtable to this file.
|
|
|
|
void R600MachineFunctionInfo::anchor() {}
|
2013-11-18 09:31:53 +00:00
|
|
|
|
2013-11-19 00:57:56 +00:00
|
|
|
R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
|
|
|
|
: AMDGPUMachineFunction(MF) { }
|