aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFunction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-28 21:08:28 +0000
committerChris Lattner <sabre@nondot.org>2002-12-28 21:08:28 +0000
commitaa09b75d2257545c4583265c7ce10f2d0e3be72b (patch)
treed12fc1499a1212c30a05c0b33a6ab8e41c73a833 /include/llvm/CodeGen/MachineFunction.h
parenteb24db9727a7babe863d5afe70c7bda3a460da18 (diff)
Rename FunctionFrameInfo to MachineFrameInfo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFunction.h')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index 58b4a9edf4..602307ea9d 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -20,7 +20,7 @@ class TargetMachine;
class Pass;
class SSARegMap;
class MachineFunctionInfo;
-class FunctionFrameInfo;
+class MachineFrameInfo;
Pass *createMachineCodeConstructionPass(TargetMachine &Target);
Pass *createMachineCodeDestructionPass();
@@ -40,7 +40,7 @@ class MachineFunction : private Annotation {
MachineFunctionInfo *MFInfo;
// Keep track of objects allocated on the stack.
- FunctionFrameInfo *FrameInfo;
+ MachineFrameInfo *FrameInfo;
public:
MachineFunction(const Function *Fn, const TargetMachine& target);
@@ -64,7 +64,7 @@ public:
/// This object contains information about objects allocated on the stack
/// frame of the current function in an abstract way.
///
- FunctionFrameInfo *getFrameInfo() const { return FrameInfo; }
+ MachineFrameInfo *getFrameInfo() const { return FrameInfo; }
/// MachineFunctionInfo - Keep track of various per-function pieces of
/// information for the sparc backend.