Add DW_ATE_UTF, which clang started using in my previous commit!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139503 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h
index fe6b355..38acf32 100644
--- a/include/llvm/Support/Dwarf.h
+++ b/include/llvm/Support/Dwarf.h
@@ -428,6 +428,7 @@
   DW_ATE_unsigned = 0x07,
   DW_ATE_unsigned_char = 0x08,
   DW_ATE_imaginary_float = 0x09,
+  DW_ATE_UTF = 0x10,
   DW_ATE_packed_decimal = 0x0a,
   DW_ATE_numeric_string = 0x0b,
   DW_ATE_edited = 0x0c,
diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp
index 0813321..ec8dfc9 100644
--- a/lib/Support/Dwarf.cpp
+++ b/lib/Support/Dwarf.cpp
@@ -416,6 +416,7 @@
   case DW_ATE_unsigned:                  return "DW_ATE_unsigned";
   case DW_ATE_unsigned_char:             return "DW_ATE_unsigned_char";
   case DW_ATE_imaginary_float:           return "DW_ATE_imaginary_float";
+  case DW_ATE_UTF:                       return "DW_ATE_UTF";
   case DW_ATE_packed_decimal:            return "DW_ATE_packed_decimal";
   case DW_ATE_numeric_string:            return "DW_ATE_numeric_string";
   case DW_ATE_edited:                    return "DW_ATE_edited";