SIMachineFunctionInfo.cpp revision 263508
144764Swpaul//===-- SIMachineFunctionInfo.cpp - SI Machine Function Info -------===//
244764Swpaul//
344764Swpaul//                     The LLVM Compiler Infrastructure
444764Swpaul//
544764Swpaul// This file is distributed under the University of Illinois Open Source
644764Swpaul// License. See LICENSE.TXT for details.
744764Swpaul//
844764Swpaul/// \file
944764Swpaul//===----------------------------------------------------------------------===//
1044764Swpaul
1144764Swpaul
1244764Swpaul#include "SIMachineFunctionInfo.h"
1344764Swpaul
1444764Swpaulusing namespace llvm;
1544764Swpaul
1644764Swpaul
1744764Swpaul// Pin the vtable to this file.
1844764Swpaulvoid SIMachineFunctionInfo::anchor() {}
1944764Swpaul
2044764SwpaulSIMachineFunctionInfo::SIMachineFunctionInfo(const MachineFunction &MF)
2144764Swpaul  : AMDGPUMachineFunction(MF),
2244764Swpaul    PSInputAddr(0) { }
2344764Swpaul