summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
blob: d19eb655e463c655990ad8c28483c868c7d8d91b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "AMDGPUMachineFunction.h"

using namespace llvm;

// Pin the vtable to this file.
void AMDGPUMachineFunction::anchor() {}

AMDGPUMachineFunction::AMDGPUMachineFunction(const MachineFunction &MF) :
  MachineFunctionInfo(),
  KernArgSize(0),
  MaxKernArgAlign(0),
  LDSSize(0),
  ABIArgOffset(0),
  ScratchSize(0),
  IsKernel(true) {}
OpenPOWER on IntegriCloud