mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-05 02:16:46 +00:00
c28b821881
Remove dead code from r600 intrinsic removal. Remove unset members, rename StackSize to be less ambiguous. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@276436 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
523 B
C++
17 lines
523 B
C++
//===-- 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;
|
|
|
|
R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
|
|
: AMDGPUMachineFunction(MF) { }
|