diff options
author | Eric Christopher <echristo@apple.com> | 2012-08-23 22:36:40 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-08-23 22:36:40 +0000 |
commit | 20f47ab7688ba1e5e4c6af4be47c2f07ee4e9ab6 (patch) | |
tree | ec1a714284c0c854082786dc7ebcb922c824c817 /lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | c1610fa3c43befd489cd41e358bfa48323594266 (diff) |
Turn these two options in to trinary state so that they can be
turned on and off separate from the platform if you're on darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index 78c871688e..f94c9d0b4b 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -309,7 +309,7 @@ class DwarfDebug { // A holder for the DarwinGDBCompat flag so that the compile unit can use it. bool isDarwinGDBCompat; - + bool hasDwarfAccelTables; private: /// assignAbbrevNumber - Define a unique number for the abbreviation. @@ -527,6 +527,7 @@ public: /// useDarwinGDBCompat - returns whether or not to limit some of our debug /// output to the limitations of darwin gdb. bool useDarwinGDBCompat() { return isDarwinGDBCompat; } + bool useDwarfAccelTables() { return hasDwarfAccelTables; } }; } // End of namespace llvm |