diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-06-23 12:51:53 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-06-23 12:51:53 +0000 |
commit | 89d67faf30ed1a8b5364f53c9a0f5e07a9a0719c (patch) | |
tree | 7ad677adaa15e302a762b79b0fa731b7ec813c9d /include/llvm/CodeGen/MachineDebugInfo.h | |
parent | 52b510b4c4f36f58c4aa37a1f835eb95e89e0adb (diff) |
Add and sort "sections" in debug lines. This always stepping through
code in sections other than ".text", including weak sections like ctors and
dtors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28909 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineDebugInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineDebugInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineDebugInfo.h b/include/llvm/CodeGen/MachineDebugInfo.h index cd28c77250..70c8398656 100644 --- a/include/llvm/CodeGen/MachineDebugInfo.h +++ b/include/llvm/CodeGen/MachineDebugInfo.h @@ -1031,9 +1031,9 @@ public: return SourceFiles; } - /// getSourceLines - Return a vector of source lines. Vector index + 1 - /// equals label ID. - const std::vector<SourceLineInfo *> &getSourceLines() const { + /// getSourceLines - Return a vector of source lines. + /// + std::vector<SourceLineInfo *> &getSourceLines() { return Lines; } |