diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-21 00:03:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-21 00:03:31 +0000 |
commit | 55c51815250a25b78ed8ac3dee0a0a843ac636ed (patch) | |
tree | 1b3ef21886562faf54f1db8bb3e995ff206d538f /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 27527b2b92bcd4b366fe6ff131424b4a2788561f (diff) | |
download | bcm5719-llvm-55c51815250a25b78ed8ac3dee0a0a843ac636ed.tar.gz bcm5719-llvm-55c51815250a25b78ed8ac3dee0a0a843ac636ed.zip |
Update and add some comments.
llvm-svn: 168399
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 6fcc80b9ccc..5adf090b5ee 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/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 |