summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bytecode/Reader
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-06-10 08:27:00 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-06-10 08:27:00 +0000
commitff35cf92c5d2679e307acc8ca04495752fb450d4 (patch)
tree03eee93a9a4b4249d0fc7427325f60eafbb76a8b /llvm/lib/Bytecode/Reader
parent1080b373a208c9727d55e6c42ec2018b8ec1f9dd (diff)
downloadbcm5719-llvm-ff35cf92c5d2679e307acc8ca04495752fb450d4.tar.gz
bcm5719-llvm-ff35cf92c5d2679e307acc8ca04495752fb450d4.zip
Doxygenize a comment.
llvm-svn: 14115
Diffstat (limited to 'llvm/lib/Bytecode/Reader')
-rw-r--r--llvm/lib/Bytecode/Reader/ReaderPrimitives.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Reader/ReaderPrimitives.h b/llvm/lib/Bytecode/Reader/ReaderPrimitives.h
index 496ab2a5b13..5c0361f1e93 100644
--- a/llvm/lib/Bytecode/Reader/ReaderPrimitives.h
+++ b/llvm/lib/Bytecode/Reader/ReaderPrimitives.h
@@ -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 @@ namespace llvm {
}
- // 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;
OpenPOWER on IntegriCloud