From 3519bc08c5eea4d45c78bb03f1be2cd51f09a596 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 4 Jan 2006 13:44:43 +0000 Subject: [PATCH] Move MachineDebugInfo to module level location. llvm-svn: 25091 --- include/llvm/CodeGen/MachineFunction.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index 05077fe5f07..9016ce0f09f 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -114,10 +114,6 @@ class MachineFunction : private Annotation { std::vector > LiveIns; std::vector 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. ///