From e5dcdb855887fd2af733d5c1ad25e3db7442d9b7 Mon Sep 17 00:00:00 2001 From: Paul Robinson Date: Thu, 20 Apr 2017 20:03:03 +0000 Subject: [PATCH] [DWARF] Fix a couple of typos llvm-svn: 300879 --- llvm/include/llvm/Support/Dwarf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/Support/Dwarf.h b/llvm/include/llvm/Support/Dwarf.h index 4b812c5..3061b7b 100644 --- a/llvm/include/llvm/Support/Dwarf.h +++ b/llvm/include/llvm/Support/Dwarf.h @@ -228,8 +228,8 @@ enum LineNumberExtendedOps { DW_LNE_hi_user = 0xff }; -enum LinerNumberEntryFormat { -#define HANDLE_DW_LNCT(ID, NAME) DW_DEFAULTED_##NAME = ID, +enum LineNumberEntryFormat { +#define HANDLE_DW_LNCT(ID, NAME) DW_LNCT_##NAME = ID, #include "llvm/Support/Dwarf.def" DW_LNCT_lo_user = 0x2000, DW_LNCT_hi_user = 0x3fff, -- 2.7.4