From 035dfbe7f2d109008d2d62d9f2a67efb477a7ab6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 9 Aug 2002 20:08:06 +0000 Subject: * Removed extraneous #includes * Fixed file headers to be consistent with the rest of LLVM * Other minor fixes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3278 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetFrameInfo.h | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) (limited to 'include') diff --git a/include/llvm/Target/TargetFrameInfo.h b/include/llvm/Target/TargetFrameInfo.h index 8f1a0be..659955c 100644 --- a/include/llvm/Target/TargetFrameInfo.h +++ b/include/llvm/Target/TargetFrameInfo.h @@ -1,14 +1,8 @@ -// $Id$ -*-c++-*- -//*************************************************************************** -// File: -// MachineFrameInfo.h -// -// Purpose: -// Interface to layout of stack frame on target machine. -// -// History: -// 11/6/01 - Vikram Adve - Created -//**************************************************************************/ +//===-- llvm/CodeGen/MachineFrameInfo.h -------------------------*- C++ -*-===// +// +// Interface to layout of stack frame on target machine. +// +//===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_FRAMEINFO_H #define LLVM_CODEGEN_FRAMEINFO_H @@ -16,22 +10,14 @@ #include "Support/NonCopyable.h" #include - -//************************* Forward Declarations **************************/ - class MachineCodeForMethod; class TargetMachine; - -//*************************** External Classes ****************************/ - - -class MachineFrameInfo : public NonCopyableV { -public: - const TargetMachine& target; +struct MachineFrameInfo : public NonCopyableV { + const TargetMachine ⌖ public: - /*ctor*/ MachineFrameInfo(const TargetMachine& tgt) : target(tgt) {} + MachineFrameInfo(const TargetMachine& tgt) : target(tgt) {} // // These methods provide constant parameters of the frame layout. -- cgit v1.1