diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-06 23:44:24 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-06 23:44:24 +0000 |
commit | 8d4eeb53f631b4e258cb2bf33f728c22586197b9 (patch) | |
tree | fa45904a0ef7dcf040f7b89cf7c8977679089311 /llvm/lib/Support/Dwarf.cpp | |
parent | 12b607ae1be5a79cbadb7d9f4db1e628c7c428f3 (diff) | |
download | llvm-8d4eeb53f631b4e258cb2bf33f728c22586197b9.zip llvm-8d4eeb53f631b4e258cb2bf33f728c22586197b9.tar.gz llvm-8d4eeb53f631b4e258cb2bf33f728c22586197b9.tar.bz2 |
Support: Stop stringifying DW_ATE_{lo,hi}_user
llvm-svn: 228468
Diffstat (limited to 'llvm/lib/Support/Dwarf.cpp')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index 9972960..7b94b71 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -422,8 +422,6 @@ const char *llvm::dwarf::AttributeEncodingString(unsigned Encoding) { case DW_ATE_signed_fixed: return "DW_ATE_signed_fixed"; case DW_ATE_unsigned_fixed: return "DW_ATE_unsigned_fixed"; case DW_ATE_decimal_float: return "DW_ATE_decimal_float"; - case DW_ATE_lo_user: return "DW_ATE_lo_user"; - case DW_ATE_hi_user: return "DW_ATE_hi_user"; } return nullptr; } |