forked from OSchip/llvm-project
warnings: Fix several uses of trailing comma on enumeration extensions.
llvm-svn: 143380
This commit is contained in:
parent
f9f7032b5d
commit
daed340b57
|
@ -20,7 +20,7 @@ public:
|
|||
|
||||
enum HashFunctionType
|
||||
{
|
||||
eHashFunctionDJB = 0u, // Daniel J Bernstein hash function that is also used by the ELF GNU_HASH sections
|
||||
eHashFunctionDJB = 0u // Daniel J Bernstein hash function that is also used by the ELF GNU_HASH sections
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -163,7 +163,7 @@ protected:
|
|||
GPRRegSet = 1,
|
||||
FPURegSet = 2,
|
||||
EXCRegSet = 3,
|
||||
DBGRegSet = 4,
|
||||
DBGRegSet = 4
|
||||
};
|
||||
|
||||
enum
|
||||
|
|
|
@ -29,7 +29,7 @@ struct DWARFMappedHash
|
|||
eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that contains the item in question
|
||||
eAtomTypeTag = 3u, // DW_TAG_xxx value, should be encoded as DW_FORM_data1 (if no tags exceed 255) or DW_FORM_data2
|
||||
eAtomTypeNameFlags = 4u, // Flags from enum NameFlags
|
||||
eAtomTypeTypeFlags = 5u, // Flags from enum TypeFlags
|
||||
eAtomTypeTypeFlags = 5u // Flags from enum TypeFlags
|
||||
};
|
||||
|
||||
struct Atom
|
||||
|
|
Loading…
Reference in New Issue