diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-08-16 12:57:46 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-08-16 12:57:46 +0000 |
commit | ffe31d7bf1e070650b0ff9ebfac815ea172a82bb (patch) | |
tree | 2d393175d6a72aa68e404e7169ab57b41fc9d96f /include/llvm/CodeGen | |
parent | d0c1e29aecdaaa67ffabbaf2dd255809e6df4978 (diff) |
Move SLEB/ULEB size calculation routines from AsmPrinter to TargetAsmInfo. This makes JIT asmprinter-free.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54843 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index b5f2695299..1bd2d51775 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -212,18 +212,10 @@ namespace llvm { /// representing an unsigned leb128 value. void PrintULEB128(unsigned Value) const; - /// SizeULEB128 - Compute the number of bytes required for an unsigned - /// leb128 value. - static unsigned SizeULEB128(unsigned Value); - /// PrintSLEB128 - Print a series of hexidecimal values(separated by commas) /// representing a signed leb128 value. void PrintSLEB128(int Value) const; - /// SizeSLEB128 - Compute the number of bytes required for a signed leb128 - /// value. - static unsigned SizeSLEB128(int Value); - //===------------------------------------------------------------------===// // Emission and print routines // |