From de9ddbf19ada796c17e3c42eae477055616130df Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 13 Sep 2011 16:39:59 +0000 Subject: [PATCH] Maintain hexadecimal order. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139601 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Dwarf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h index 38acf32b21a..8e4dabc9de0 100644 --- a/include/llvm/Support/Dwarf.h +++ b/include/llvm/Support/Dwarf.h @@ -428,13 +428,13 @@ enum dwarf_constants { 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, DW_ATE_signed_fixed = 0x0d, DW_ATE_unsigned_fixed = 0x0e, DW_ATE_decimal_float = 0x0f, + DW_ATE_UTF = 0x10, DW_ATE_lo_user = 0x80, DW_ATE_hi_user = 0xff,