diff options
author | Eric Christopher <echristo@gmail.com> | 2012-12-10 22:25:41 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-12-10 22:25:41 +0000 |
commit | 0aa4a670ad9b12b1b0956eab399d043c77fd1b72 (patch) | |
tree | dd26cfa11edc1b099f7ee04dbc95a19875edc540 /llvm/lib | |
parent | 81d091eed936a7fa98bad7657c941c766c5cc797 (diff) | |
download | bcm5719-llvm-0aa4a670ad9b12b1b0956eab399d043c77fd1b72.tar.gz bcm5719-llvm-0aa4a670ad9b12b1b0956eab399d043c77fd1b72.zip |
Rearrange vars and make comments more obvious.
llvm-svn: 169780
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 1125a94c4fc..23f95e3cb69 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -309,12 +309,14 @@ class DwarfDebug { // table for the same directory as DW_at_comp_dir. StringRef CompilationDir; + // Counter for assigning globally unique IDs for CUs. + unsigned GlobalCUIndexCount; + // Holders for the various debug information flags that we might need to // have exposed. See accessor functions below for description. - bool IsDarwinGDBCompat; - // Counter for assigning globally unique IDs for CUs. - unsigned GlobalCUIndexCount; + // Whether or not we're emitting info for older versions of gdb on darwin. + bool IsDarwinGDBCompat; // DWARF5 Experimental Options bool HasDwarfAccelTables; |