[llvm-commits] [llvm] r169780 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h

Eric Christopher echristo at gmail.com
Mon Dec 10 14:25:41 PST 2012


Author: echristo
Date: Mon Dec 10 16:25:41 2012
New Revision: 169780

URL: http://llvm.org/viewvc/llvm-project?rev=169780&view=rev
Log:
Rearrange vars and make comments more obvious.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=169780&r1=169779&r2=169780&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Mon Dec 10 16:25:41 2012
@@ -309,12 +309,14 @@
   // 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;





More information about the llvm-commits mailing list