mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
0b8dd1f32f
llvm-svn: 29506
20 lines
662 B
C++
20 lines
662 B
C++
//===-- TargetFrameInfo.cpp - Implement machine frame interface -*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Implements the layout of a stack frame on the target machine.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Target/TargetFrameInfo.h"
|
|
#include <cstdlib>
|
|
using namespace llvm;
|
|
|
|
TargetFrameInfo::~TargetFrameInfo() {
|
|
}
|