diff options
| author | Eric Christopher <echristo@gmail.com> | 2012-11-12 22:22:20 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2012-11-12 22:22:20 +0000 |
| commit | 29424311754406f71d32cd2802d7c7687cfb4ad2 (patch) | |
| tree | cd04d65260d0000cc75b4974ebbc3d00bebd4112 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
| parent | 33c20f45f1f1fc540f30566c61a149c37a0494a3 (diff) | |
| download | bcm5719-llvm-29424311754406f71d32cd2802d7c7687cfb4ad2.tar.gz bcm5719-llvm-29424311754406f71d32cd2802d7c7687cfb4ad2.zip | |
Add an option to enable prototype "fission" capabilities and debug changes.
llvm-svn: 167765
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 61d9a51a527..1188ffa73ca 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -319,6 +319,7 @@ class DwarfDebug { // A holder for the DarwinGDBCompat flag so that the compile unit can use it. bool isDarwinGDBCompat; bool hasDwarfAccelTables; + bool hasDwarfFission; private: /// assignAbbrevNumber - Define a unique number for the abbreviation. @@ -537,6 +538,7 @@ public: /// output to the limitations of darwin gdb. bool useDarwinGDBCompat() { return isDarwinGDBCompat; } bool useDwarfAccelTables() { return hasDwarfAccelTables; } + bool useDwarfFission() { return hasDwarfFission; } }; } // End of namespace llvm |

