diff options
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIEHash.h')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIEHash.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIEHash.h b/llvm/lib/CodeGen/AsmPrinter/DIEHash.h index b792aeab6ce..78238e19ab3 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIEHash.h +++ b/llvm/lib/CodeGen/AsmPrinter/DIEHash.h @@ -106,6 +106,9 @@ private: /// \brief Encodes and adds \param Value to the hash as a ULEB128. void addULEB128(uint64_t Value); + /// \brief Encodes and adds \param Value to the hash as a SLEB128. + void addSLEB128(int64_t Value); + /// \brief Adds \param Str to the hash and includes a NULL byte. void addString(StringRef Str); |

