aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFrameInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-16 18:35:57 +0000
committerChris Lattner <sabre@nondot.org>2003-01-16 18:35:57 +0000
commit9085d8a9a9000eeaa7cf337ccbdca41d528c99c2 (patch)
tree223a046e081acb501224e329935d4da40b8c761a /include/llvm/CodeGen/MachineFrameInfo.h
parent55f6fab9f11dba97e0ee2c4e836c898e713d102a (diff)
Print machine frame objects with the frame offset intrinsic to the machine
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5329 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineFrameInfo.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h
index 45a24cc70b..6f907e1ff3 100644
--- a/include/llvm/CodeGen/MachineFrameInfo.h
+++ b/include/llvm/CodeGen/MachineFrameInfo.h
@@ -33,6 +33,7 @@
class TargetData;
class TargetRegisterClass;
+class MachineFunction;
#include <vector>
class MachineFrameInfo {
@@ -205,10 +206,10 @@ public:
/// print - Used by the MachineFunction printer to print information about
/// stack objects. Implemented in MachineFunction.cpp
///
- void print(std::ostream &OS) const;
+ void print(const MachineFunction &MF, std::ostream &OS) const;
- /// dump - Call print(std::cerr) to be called from the debugger.
- void dump() const;
+ /// dump - Call print(MF, std::cerr) to be called from the debugger.
+ void dump(const MachineFunction &MF) const;
};
#endif