[llvm-commits] CVS: llvm/include/llvm/Bytecode/BytecodeHandler.h
Chris Lattner
sabre at nondot.org
Tue Feb 6 22:53:21 PST 2007
Changes in directory llvm/include/llvm/Bytecode:
BytecodeHandler.h updated: 1.13 -> 1.14
---
Log message:
remove the handleVBR32/handleVBR64 callbacks. They are very fine-grained.
---
Diffs of the changes: (+0 -9)
BytecodeHandler.h | 9 ---------
1 files changed, 9 deletions(-)
Index: llvm/include/llvm/Bytecode/BytecodeHandler.h
diff -u llvm/include/llvm/Bytecode/BytecodeHandler.h:1.13 llvm/include/llvm/Bytecode/BytecodeHandler.h:1.14
--- llvm/include/llvm/Bytecode/BytecodeHandler.h:1.13 Tue Feb 6 23:09:50 2007
+++ llvm/include/llvm/Bytecode/BytecodeHandler.h Wed Feb 7 00:53:02 2007
@@ -308,15 +308,6 @@
unsigned Size ///< The size of the block
) {}
- /// @brief Handle a variable bit rate 32 bit unsigned
- virtual void handleVBR32(
- unsigned Size ///< Number of bytes the vbr_uint took up
- ) {}
-
- /// @brief Handle a variable bit rate 64 bit unsigned
- virtual void handleVBR64(
- unsigned Size ///< Number of byte sthe vbr_uint64 took up
- ) {}
/// @}
};
More information about the llvm-commits
mailing list