diff options
author | Richard Mitton <richard@codersnotes.com> | 2013-10-07 18:39:18 +0000 |
---|---|---|
committer | Richard Mitton <richard@codersnotes.com> | 2013-10-07 18:39:18 +0000 |
commit | 0aafb58acadba8b7de3cc923d01203e0cf48b03b (patch) | |
tree | f160e015433e0aa4fc764800dcef1deff9b21045 /llvm/lib/Support/Dwarf.cpp | |
parent | fbcbce439d51125939509efc3717b8ccb893a22b (diff) | |
download | bcm5719-llvm-0aafb58acadba8b7de3cc923d01203e0cf48b03b.tar.gz bcm5719-llvm-0aafb58acadba8b7de3cc923d01203e0cf48b03b.zip |
Formally added an explicit enum for DWARF TLS support. No functionality change.
llvm-svn: 192118
Diffstat (limited to 'llvm/lib/Support/Dwarf.cpp')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index f4993454b68..c000b636cc1 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -456,10 +456,11 @@ const char *llvm::dwarf::OperationEncodingString(unsigned Encoding) { case DW_OP_bit_piece: return "DW_OP_bit_piece"; case DW_OP_implicit_value: return "DW_OP_implicit_value"; case DW_OP_stack_value: return "DW_OP_stack_value"; - case DW_OP_lo_user: return "DW_OP_lo_user"; - case DW_OP_hi_user: return "DW_OP_hi_user"; - // DWARF5 Fission Proposal Op Extensions + // GNU thread-local storage + case DW_OP_GNU_push_tls_address: return "DW_OP_GNU_push_tls_address"; + + // DWARF5 Fission Proposal Op Extensions case DW_OP_GNU_addr_index: return "DW_OP_GNU_addr_index"; case DW_OP_GNU_const_index: return "DW_OP_GNU_const_index"; } |