[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineFunction.h
Jim Laskey
jlaskey at apple.com
Wed Jan 4 05:44:54 PST 2006
Changes in directory llvm/include/llvm/CodeGen:
MachineFunction.h updated: 1.56 -> 1.57
---
Log message:
Move MachineDebugInfo to module level location.
---
Diffs of the changes: (+0 -9)
MachineFunction.h | 9 ---------
1 files changed, 9 deletions(-)
Index: llvm/include/llvm/CodeGen/MachineFunction.h
diff -u llvm/include/llvm/CodeGen/MachineFunction.h:1.56 llvm/include/llvm/CodeGen/MachineFunction.h:1.57
--- llvm/include/llvm/CodeGen/MachineFunction.h:1.56 Fri Dec 16 16:45:28 2005
+++ llvm/include/llvm/CodeGen/MachineFunction.h Wed Jan 4 07:44:43 2006
@@ -114,10 +114,6 @@
std::vector<std::pair<unsigned, unsigned> > LiveIns;
std::vector<unsigned> LiveOuts;
- /// DebugInfo - Keep track of debug information for the function.
- ///
- MachineDebugInfo DebugInfo;
-
public:
MachineFunction(const Function *Fn, const TargetMachine &TM);
~MachineFunction();
@@ -218,11 +214,6 @@
return MBBNumbering.back();
}
- /// getDebugInfo - Returns the DebugInfo.
- MachineDebugInfo &getDebugInfo() {
- return DebugInfo;
- }
-
/// print - Print out the MachineFunction in a format suitable for debugging
/// to the specified stream.
///
More information about the llvm-commits
mailing list