diff options
author | Amjad Aboud <amjad.aboud@intel.com> | 2015-11-12 09:38:54 +0000 |
---|---|---|
committer | Amjad Aboud <amjad.aboud@intel.com> | 2015-11-12 09:38:54 +0000 |
commit | e59cc3e540ee7b9840f4bdbe334179340feca6da (patch) | |
tree | 9b04b20373ce51ae419b23446f3f133be8d0940f /llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h | |
parent | c498ba3a3e39eb94b79e3127eeda8aee2fcfbe68 (diff) | |
download | bcm5719-llvm-e59cc3e540ee7b9840f4bdbe334179340feca6da.tar.gz bcm5719-llvm-e59cc3e540ee7b9840f4bdbe334179340feca6da.zip |
dwarfdump: Added macro support to llvm-dwarfdump tool.
Added "macro" option to "-debug-dump" flag, which trigger parsing and dumping of the ".debug_macinfo" section.
Differential Revision: http://reviews.llvm.org/D14294
llvm-svn: 252866
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h b/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h index 946a31308aa..16e68351d5e 100644 --- a/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h +++ b/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h @@ -17,7 +17,7 @@ namespace dwarf { namespace syntax { // Symbolic names for various syntax elements. -enum HighlightColor { Address, String, Tag, Attribute, Enumerator }; +enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro }; /// An RAII object that temporarily switches an output stream to a /// specific color. |