[PATCH] D16104: [readobj] Expand CodeView dumping functionality

David Majnemer via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 11 21:44:04 PST 2016


majnemer added inline comments.

================
Comment at: include/llvm/DebugInfo/PDB/PDBTypes.h:148-166
@@ -233,21 +147,21 @@
 /// here: https://msdn.microsoft.com/en-us/library/bw3aekw6.aspx
 enum class PDB_Lang {
   C = 0x00,
   Cpp = 0x01,
   Fortran = 0x02,
   Masm = 0x03,
   Pascal = 0x04,
   Basic = 0x05,
   Cobol = 0x06,
   Link = 0x07,
   Cvtres = 0x08,
   Cvtpgd = 0x09,
   CSharp = 0x0a,
   VB = 0x0b,
   ILAsm = 0x0c,
   Java = 0x0d,
   JScript = 0x0e,
   MSIL = 0x0f,
   HLSL = 0x10
 };
 
----------------
Is this redundant with the `SourceLanguage` enum?


http://reviews.llvm.org/D16104





More information about the llvm-commits mailing list