[llvm-commits] CVS: llvm/lib/Bytecode/Reader/ReaderPrimitives.h
LLVM
llvm at cs.uiuc.edu
Thu Jun 10 03:32:01 PDT 2004
Changes in directory llvm/lib/Bytecode/Reader:
ReaderPrimitives.h updated: 1.4 -> 1.5
---
Log message:
Doxygenize a comment.
---
Diffs of the changes: (+2 -2)
Index: llvm/lib/Bytecode/Reader/ReaderPrimitives.h
diff -u llvm/lib/Bytecode/Reader/ReaderPrimitives.h:1.4 llvm/lib/Bytecode/Reader/ReaderPrimitives.h:1.5
--- llvm/lib/Bytecode/Reader/ReaderPrimitives.h:1.4 Tue Jan 20 13:13:07 2004
+++ llvm/lib/Bytecode/Reader/ReaderPrimitives.h Thu Jun 10 03:27:00 2004
@@ -20,6 +20,7 @@
namespace llvm {
+ /// @brief Read an unsigned integer
static inline unsigned read(const unsigned char *&Buf,
const unsigned char *EndBuf) {
if (Buf+4 > EndBuf) throw std::string("Ran out of data!");
@@ -28,8 +29,7 @@
}
- // read_vbr - Read an unsigned integer encoded in variable bitrate format.
- //
+ /// @brief Read an unsigned integer encoded in variable bitrate format.
static inline unsigned read_vbr_uint(const unsigned char *&Buf,
const unsigned char *EndBuf) {
unsigned Shift = 0;
More information about the llvm-commits
mailing list