OSDN Git Service

Move MachineDebugInfo to module level location.
authorJim Laskey <jlaskey@mac.com>
Wed, 4 Jan 2006 13:44:43 +0000 (13:44 +0000)
committerJim Laskey <jlaskey@mac.com>
Wed, 4 Jan 2006 13:44:43 +0000 (13:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25091 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineFunction.h

index 05077fe..9016ce0 100644 (file)
@@ -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.
   ///