diff options
Diffstat (limited to 'include/llvm/Support/LEB128.h')
-rw-r--r-- | include/llvm/Support/LEB128.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/Support/LEB128.h b/include/llvm/Support/LEB128.h index 3d73792..9ef5fe6 100644 --- a/include/llvm/Support/LEB128.h +++ b/include/llvm/Support/LEB128.h @@ -90,6 +90,12 @@ inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = 0) { return Value; } +/// Utility function to get the size of the ULEB128-encoded value. +extern unsigned getULEB128Size(uint64_t Value); + +/// Utility function to get the size of the SLEB128-encoded value. +extern unsigned getSLEB128Size(int64_t Value); + } // namespace llvm #endif // LLVM_SYSTEM_LEB128_H |