diff options
author | Paul Robinson <paul.robinson@sony.com> | 2017-04-20 20:03:03 +0000 |
---|---|---|
committer | Paul Robinson <paul.robinson@sony.com> | 2017-04-20 20:03:03 +0000 |
commit | e5dcdb855887fd2af733d5c1ad25e3db7442d9b7 (patch) | |
tree | ec3c82b45613b818082bef0ea450c2617bca444a | |
parent | 8b1240b0f09d53863cb298c7519508ddead3c957 (diff) | |
download | bcm5719-llvm-e5dcdb855887fd2af733d5c1ad25e3db7442d9b7.tar.gz bcm5719-llvm-e5dcdb855887fd2af733d5c1ad25e3db7442d9b7.zip |
[DWARF] Fix a couple of typos
llvm-svn: 300879
-rw-r--r-- | llvm/include/llvm/Support/Dwarf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/Dwarf.h b/llvm/include/llvm/Support/Dwarf.h index 4b812c58f34..3061b7b5fa0 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, |