[llvm] r217231 - Reapply "[dwarfdump] Add missing DW_LANG_Mips_Assembler case to LanguageString()"
Frederic Riss
friss at apple.com
Fri Sep 5 00:21:41 PDT 2014
Author: friss
Date: Fri Sep 5 02:21:40 2014
New Revision: 217231
URL: http://llvm.org/viewvc/llvm-project?rev=217231&view=rev
Log:
Reapply "[dwarfdump] Add missing DW_LANG_Mips_Assembler case to LanguageString()"
This commit was reverted in r217183, but is OK to go in again now that its dependency is commited (as of r217186).
Modified:
llvm/trunk/lib/Support/Dwarf.cpp
llvm/trunk/test/DebugInfo/2010-03-19-DbgDeclare.ll
llvm/trunk/test/MC/MachO/gen-dwarf.s
Modified: llvm/trunk/lib/Support/Dwarf.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Dwarf.cpp?rev=217231&r1=217230&r2=217231&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Dwarf.cpp (original)
+++ llvm/trunk/lib/Support/Dwarf.cpp Fri Sep 5 02:21:40 2014
@@ -598,6 +598,7 @@ const char *llvm::dwarf::LanguageString(
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;
Modified: llvm/trunk/test/DebugInfo/2010-03-19-DbgDeclare.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/2010-03-19-DbgDeclare.ll?rev=217231&r1=217230&r2=217231&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/2010-03-19-DbgDeclare.ll (original)
+++ llvm/trunk/test/DebugInfo/2010-03-19-DbgDeclare.ll Fri Sep 5 02:21:40 2014
@@ -1,6 +1,6 @@
; RUN: opt < %s -verify -S | FileCheck %s
-; CHECK: lang 0x8001
+; CHECK: [DW_LANG_Mips_Assembler]
define void @Foo(i32 %a, i32 %b) {
entry:
Modified: llvm/trunk/test/MC/MachO/gen-dwarf.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/MachO/gen-dwarf.s?rev=217231&r1=217230&r2=217231&view=diff
==============================================================================
--- llvm/trunk/test/MC/MachO/gen-dwarf.s (original)
+++ llvm/trunk/test/MC/MachO/gen-dwarf.s Fri Sep 5 02:21:40 2014
@@ -46,7 +46,7 @@ _x: .long 1
// CHECK: DW_AT_name [DW_FORM_string]
// We don't check the DW_AT_comp_dir which is the current working directory
// CHECK: DW_AT_producer [DW_FORM_string] ("llvm-mc (based on {{.*}})")
-// CHECK: DW_AT_language [DW_FORM_data2] (0x8001)
+// CHECK: DW_AT_language [DW_FORM_data2] (DW_LANG_Mips_Assembler)
// CHECK: DW_TAG_label [2] *
// CHECK: DW_AT_name [DW_FORM_string] ("bar")
More information about the llvm-commits
mailing list