Move MachineDebugInfo to module level location.

llvm-svn: 25091
This commit is contained in:
Jim Laskey 2006-01-04 13:44:43 +00:00
parent 881126a42d
commit 3519bc08c5

View File

@ -114,10 +114,6 @@ class MachineFunction : private Annotation {
std::vector<std::pair<unsigned, unsigned> > LiveIns; std::vector<std::pair<unsigned, unsigned> > LiveIns;
std::vector<unsigned> LiveOuts; std::vector<unsigned> LiveOuts;
/// DebugInfo - Keep track of debug information for the function.
///
MachineDebugInfo DebugInfo;
public: public:
MachineFunction(const Function *Fn, const TargetMachine &TM); MachineFunction(const Function *Fn, const TargetMachine &TM);
~MachineFunction(); ~MachineFunction();
@ -218,11 +214,6 @@ public:
return MBBNumbering.back(); return MBBNumbering.back();
} }
/// getDebugInfo - Returns the DebugInfo.
MachineDebugInfo &getDebugInfo() {
return DebugInfo;
}
/// print - Print out the MachineFunction in a format suitable for debugging /// print - Print out the MachineFunction in a format suitable for debugging
/// to the specified stream. /// to the specified stream.
/// ///