[Lldb-commits] [lldb] r106045 - /lldb/trunk/include/lldb/Core/dwarf.h

Jason Molenda jmolenda at apple.com
Tue Jun 15 14:20:35 PDT 2010


Author: jmolenda
Date: Tue Jun 15 16:20:35 2010
New Revision: 106045

URL: http://llvm.org/viewvc/llvm-project?rev=106045&view=rev
Log:
Add definition for DW_LANG_MIPS_Assembler.  This file was originally
generated by a script.  I don't know if we're still regenerating
it or not; will have to check with Greg about how he's handling this
now.  Should update it for the final DWARF3 and soon-to-be-released
DWARF4 constants while I'm at it..


Modified:
    lldb/trunk/include/lldb/Core/dwarf.h

Modified: lldb/trunk/include/lldb/Core/dwarf.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/dwarf.h?rev=106045&r1=106044&r2=106045&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/dwarf.h (original)
+++ lldb/trunk/include/lldb/Core/dwarf.h Tue Jun 15 16:20:35 2010
@@ -449,23 +449,24 @@
 
 /* [7.12] Figure 27 "Language encodings" (p. 143) in DWARFv3 draft 8 */
 
-#define DW_LANG_C89            0x1
-#define DW_LANG_C              0x2
-#define DW_LANG_Ada83          0x3
-#define DW_LANG_C_plus_plus    0x4
-#define DW_LANG_Cobol74        0x5
-#define DW_LANG_Cobol85        0x6
-#define DW_LANG_Fortran77      0x7
-#define DW_LANG_Fortran90      0x8
-#define DW_LANG_Pascal83       0x9
-#define DW_LANG_Modula2        0xA
-#define DW_LANG_Java           0xB
-#define DW_LANG_C99            0xC
-#define DW_LANG_Ada95          0xD
-#define DW_LANG_Fortran95      0xE
-#define DW_LANG_PLI            0xF
-#define DW_LANG_lo_user     0x8000
-#define DW_LANG_hi_user     0xFFFF
+#define DW_LANG_C89               0x1
+#define DW_LANG_C                 0x2
+#define DW_LANG_Ada83             0x3
+#define DW_LANG_C_plus_plus       0x4
+#define DW_LANG_Cobol74           0x5
+#define DW_LANG_Cobol85           0x6
+#define DW_LANG_Fortran77         0x7
+#define DW_LANG_Fortran90         0x8
+#define DW_LANG_Pascal83          0x9
+#define DW_LANG_Modula2           0xA
+#define DW_LANG_Java              0xB
+#define DW_LANG_C99               0xC
+#define DW_LANG_Ada95             0xD
+#define DW_LANG_Fortran95         0xE
+#define DW_LANG_PLI               0xF
+#define DW_LANG_lo_user        0x8000
+#define DW_LANG_hi_user        0xFFFF
+#define DW_LANG_MIPS_Assembler 0x8001
 
 /* [7.13], "Address Class Encodings" (p. 144) in DWARFv3 draft 8 */
 





More information about the lldb-commits mailing list