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

Eric Christopher echristo at gmail.com
Tue Nov 20 16:03:32 PST 2012


Author: echristo
Date: Tue Nov 20 18:03:31 2012
New Revision: 168399

URL: http://llvm.org/viewvc/llvm-project?rev=168399&view=rev
Log:
Update and add some comments.

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=168399&r1=168398&r2=168399&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Tue Nov 20 18:03:31 2012
@@ -538,7 +538,15 @@
   /// useDarwinGDBCompat - returns whether or not to limit some of our debug
   /// output to the limitations of darwin gdb.
   bool useDarwinGDBCompat() { return isDarwinGDBCompat; }
+
+  // Experimental DWARF5 features.
+
+  /// useDwarfAccelTables - returns whether or not to emit tables that
+  /// dwarf consumers can use to accelerate lookup.
   bool useDwarfAccelTables() { return hasDwarfAccelTables; }
+
+  /// useDwarfFission - returns whether or not to change the current debug
+  /// info for the fission proposal support.
   bool useDwarfFission() { return hasDwarfFission; }
 };
 } // End of namespace llvm





More information about the llvm-commits mailing list