Fix a copy&paste error in the macro definition for HANDLE_DW_MACRO and

HANDLE_DE_RLE. Caught by the LLDB build bot.

llvm-svn: 285448
This commit is contained in:
Adrian Prantl 2016-10-28 20:32:17 +00:00
parent 4eae301995
commit 71385ed8b6
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ enum MacinfoRecordType {
/// DWARF v5 macro information entry type encodings.
enum MacroEntryType {
#define HANDLE_DW_MACRO(ID, NAME) DW_DEFAULTED_##NAME = ID,
#define HANDLE_DW_MACRO(ID, NAME) DW_MACRO_##NAME = ID,
#include "llvm/Support/Dwarf.def"
DW_MACRO_lo_user = 0xe0,
DW_MACRO_hi_user = 0xff
@ -301,7 +301,7 @@ enum MacroEntryType {
/// DWARF v5 range list entry encoding values.
enum RangeListEntries {
#define HANDLE_DW_RLE(ID, NAME) DW_DEFAULTED_##NAME = ID,
#define HANDLE_DW_RLE(ID, NAME) DW_RLE_##NAME = ID,
#include "llvm/Support/Dwarf.def"
};