blob: 071f9fa43a16470013f3e341e8d817b89d71b669 [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- SIMachineFunctionInfo.cpp - SI Machine Function Info -------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8/// \file
9//===----------------------------------------------------------------------===//
10
11
12#include "SIMachineFunctionInfo.h"
13
14using namespace llvm;
15
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000016
17// Pin the vtable to this file.
18void SIMachineFunctionInfo::anchor() {}
19
Tom Stellard75aadc22012-12-11 21:25:42 +000020SIMachineFunctionInfo::SIMachineFunctionInfo(const MachineFunction &MF)
Vincent Lejeuneace6f732013-04-01 21:47:53 +000021 : AMDGPUMachineFunction(MF),
22 PSInputAddr(0) { }