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 /lib/Support/Dwarf.cpp | |
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
Diffstat (limited to 'lib/Support/Dwarf.cpp')
-rw-r--r-- | lib/Support/Dwarf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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"; } |