Update and add some comments.
authorEric Christopher <echristo@gmail.com>
Wed, 21 Nov 2012 00:03:31 +0000 (00:03 +0000)
committerEric Christopher <echristo@gmail.com>
Wed, 21 Nov 2012 00:03:31 +0000 (00:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168399 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfDebug.h

index 6fcc80b9ccc192f063587c7b1ea0a7ccc3af840b..5adf090b5ee0cb516acc052627b6694757619605 100644 (file)
@@ -538,7 +538,15 @@ public:
   /// 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