diff options
author | Eric Christopher <echristo@gmail.com> | 2013-12-03 00:45:45 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-12-03 00:45:45 +0000 |
commit | 0f63d06d647907482816b48fa7bcd6c134f5f834 (patch) | |
tree | b94ea0a2bfc8c9d337a7fc4362b44d14517681b0 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 8f1c881abcc2c92d73a6b5f75021dd6e29f7efb5 (diff) | |
download | bcm5719-llvm-0f63d06d647907482816b48fa7bcd6c134f5f834.tar.gz bcm5719-llvm-0f63d06d647907482816b48fa7bcd6c134f5f834.zip |
Make ranges and range lists be a discrete entity that can be located
and emitted per function and CU. Begins coalescing ranges as a first
class entity through debug info. No functional change.
llvm-svn: 196178
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 59e7379e444..351637cc02b 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -409,8 +409,6 @@ class DwarfDebug { DbgValueHistoryMap; DbgValueHistoryMap DbgValues; - SmallVector<const MCSymbol *, 8> DebugRangeSymbols; - // Previous instruction's location information. This is used to determine // label location to indicate scope boundries in dwarf debug info. DebugLoc PrevInstLoc; @@ -437,6 +435,9 @@ class DwarfDebug { // Counter for assigning globally unique IDs for CUs. unsigned GlobalCUIndexCount; + // Counter for assigning globally unique IDs for ranges. + unsigned GlobalRangeCount; + // Holder for the file specific debug information. DwarfUnits InfoHolder; |