aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFunction.h
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-01-04 13:44:43 +0000
committerJim Laskey <jlaskey@mac.com>2006-01-04 13:44:43 +0000
commit2c4ec70233ab13d11ef941a70c72bb74768a39e2 (patch)
tree9acbd0c05df7b074c5fdab189237b08b07e85fe6 /include/llvm/CodeGen/MachineFunction.h
parentf99c232506f134107f9ae02c118fe31685e6b06c (diff)
Move MachineDebugInfo to module level location.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFunction.h')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index 05077fe5f0..9016ce0f09 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -114,10 +114,6 @@ class MachineFunction : private Annotation {
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 @@ public:
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.
///