diff options
author | Frederic Riss <friss@apple.com> | 2014-09-04 18:40:23 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2014-09-04 18:40:23 +0000 |
commit | a3f54f211e307003c592744d10bef5e53ed0f4c6 (patch) | |
tree | b0ed4ddeb5845bf8d6f526f3899adc11359a4c00 /llvm/lib/Support | |
parent | 168861ad4f08abbcd1cb24929515109719011797 (diff) | |
download | bcm5719-llvm-a3f54f211e307003c592744d10bef5e53ed0f4c6.tar.gz bcm5719-llvm-a3f54f211e307003c592744d10bef5e53ed0f4c6.zip |
[dwarfdump] Add missing DW_LANG_Mips_Assembler case to LanguageString()
Reviewed By: dblaikie
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D5193
llvm-svn: 217182
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index c9efa61afe6..4ff078c5ba9 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -598,6 +598,7 @@ const char *llvm::dwarf::LanguageString(unsigned Language) { case DW_LANG_C_plus_plus_11: return "DW_LANG_C_plus_plus_11"; case DW_LANG_OCaml: return "DW_LANG_OCaml"; case DW_LANG_lo_user: return "DW_LANG_lo_user"; + case DW_LANG_Mips_Assembler: return "DW_LANG_Mips_Assembler"; case DW_LANG_hi_user: return "DW_LANG_hi_user"; } return nullptr; |