summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfDebug.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-11-21 00:03:31 +0000
committerEric Christopher <echristo@gmail.com>2012-11-21 00:03:31 +0000
commite6ad6acb1922f54d0eac34fe6b60bca601401e23 (patch)
tree7c3e0cfcdf6a2042ce696c3dedd8e0889d55fb40 /lib/CodeGen/AsmPrinter/DwarfDebug.h
parentc82fbf4cb19223ce483a249f6940bcf5e7067193 (diff)
downloadllvm-e6ad6acb1922f54d0eac34fe6b60bca601401e23.tar.gz
llvm-e6ad6acb1922f54d0eac34fe6b60bca601401e23.tar.bz2
llvm-e6ad6acb1922f54d0eac34fe6b60bca601401e23.tar.xz
Update and add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h
index 6fcc80b9cc..5adf090b5e 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h
@@ -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