diff options
author | Devang Patel <dpatel@apple.com> | 2010-05-25 23:40:22 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-05-25 23:40:22 +0000 |
commit | c3f5f783a2923e7842802d5cd1a932ee56c3bb45 (patch) | |
tree | 5f6a9f1902f7a9e98b9eba60dcbfa03247eb2d06 /lib/CodeGen/AsmPrinter/DIE.h | |
parent | 48aefe15d08e4046b94715ea44e1f4a94af481a6 (diff) |
First cut at supporting .debug_loc section.
This is used to track variable information.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DIE.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DIE.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DIE.h b/lib/CodeGen/AsmPrinter/DIE.h index 9cb8314bd9..d56c094779 100644 --- a/lib/CodeGen/AsmPrinter/DIE.h +++ b/lib/CodeGen/AsmPrinter/DIE.h @@ -315,6 +315,10 @@ namespace llvm { /// virtual void EmitValue(AsmPrinter *AP, unsigned Form) const; + /// getValue - Get MCSymbol. + /// + const MCSymbol *getValue() const { return Label; } + /// SizeOf - Determine size of label value in bytes. /// virtual unsigned SizeOf(AsmPrinter *AP, unsigned Form) const; |