[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineFrameInfo.h
Chris Lattner
lattner at cs.uiuc.edu
Thu Jan 16 12:37:05 PST 2003
Changes in directory llvm/include/llvm/CodeGen:
MachineFrameInfo.h updated: 1.3 -> 1.4
---
Log message:
Print machine frame objects with the frame offset intrinsic to the machine
---
Diffs of the changes:
Index: llvm/include/llvm/CodeGen/MachineFrameInfo.h
diff -u llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.3 llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.4
--- llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.3 Sun Jan 12 18:15:24 2003
+++ llvm/include/llvm/CodeGen/MachineFrameInfo.h Thu Jan 16 12:35:57 2003
@@ -33,6 +33,7 @@
class TargetData;
class TargetRegisterClass;
+class MachineFunction;
#include <vector>
class MachineFrameInfo {
@@ -205,10 +206,10 @@
/// 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
More information about the llvm-commits
mailing list