2012-12-12 05:25:42 +08: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 17:31:53 +08:00
|
|
|
|
2013-11-19 08:57:56 +08:00
|
|
|
// Pin the vtable to this file.
|
|
|
|
void R600MachineFunctionInfo::anchor() {}
|
2013-11-18 17:31:53 +08:00
|
|
|
|
2013-11-19 08:57:56 +08:00
|
|
|
R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
|
|
|
|
: AMDGPUMachineFunction(MF) { }
|