summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-12-03 00:45:45 +0000
committerEric Christopher <echristo@gmail.com>2013-12-03 00:45:45 +0000
commit0f63d06d647907482816b48fa7bcd6c134f5f834 (patch)
treeb94ea0a2bfc8c9d337a7fc4362b44d14517681b0 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
parent8f1c881abcc2c92d73a6b5f75021dd6e29f7efb5 (diff)
downloadbcm5719-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.h5
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;
OpenPOWER on IntegriCloud