diff options
author | Devang Patel <dpatel@apple.com> | 2011-04-21 22:26:13 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-04-21 22:26:13 +0000 |
commit | 06161fcdd6f8fe80aff090f9c4d75e1cab2b7da2 (patch) | |
tree | 706ad385c87809c54eb3c0641d50fc4fc86acc21 | |
parent | acc381bee95b5eafcdf3eaa85a66e83a5773aacb (diff) |
Add DW_OP_bit_piece.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129945 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/Dwarf.h | 1 | ||||
-rw-r--r-- | lib/Support/Dwarf.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h index 2a48f3c307..f6d680b8b9 100644 --- a/include/llvm/Support/Dwarf.h +++ b/include/llvm/Support/Dwarf.h @@ -411,6 +411,7 @@ enum dwarf_constants { DW_OP_call_ref = 0x9a, DW_OP_form_tls_address = 0x9b, DW_OP_call_frame_cfa = 0x9c, + DW_OP_bit_piece = 0x9d, DW_OP_lo_user = 0xe0, DW_OP_hi_user = 0xff, diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp index 25cf531add..74a9fda7ab 100644 --- a/lib/Support/Dwarf.cpp +++ b/lib/Support/Dwarf.cpp @@ -395,6 +395,7 @@ const char *llvm::dwarf::OperationEncodingString(unsigned Encoding) { case DW_OP_call_ref: return "DW_OP_call_ref"; case DW_OP_form_tls_address: return "DW_OP_form_tls_address"; case DW_OP_call_frame_cfa: return "DW_OP_call_frame_cfa"; + case DW_OP_bit_piece: return "DW_OP_bit_piece"; case DW_OP_lo_user: return "DW_OP_lo_user"; case DW_OP_hi_user: return "DW_OP_hi_user"; } |