From 551319dda58d700ffabd0728592dd7b722a2e34c Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 13 Nov 2014 04:56:41 +0000 Subject: [PATCH] Update \param(s) in MemoryObject::readBytes(). [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221863 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/MemoryObject.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llvm/Support/MemoryObject.h b/include/llvm/Support/MemoryObject.h index bceb1750834..e0c8749da34 100644 --- a/include/llvm/Support/MemoryObject.h +++ b/include/llvm/Support/MemoryObject.h @@ -38,11 +38,11 @@ public: /// Tries to read a contiguous range of bytes from the region, up to the end /// of the region. /// - /// @param address - The address of the first byte, in the same space as - /// getBase(). - /// @param size - The number of bytes to copy. - /// @param buf - A pointer to a buffer to be filled in. Must be non-NULL + /// @param Buf - A pointer to a buffer to be filled in. Must be non-NULL /// and large enough to hold size bytes. + /// @param Size - The number of bytes to copy. + /// @param Address - The address of the first byte, in the same space as + /// getBase(). /// @result - The number of bytes read. virtual uint64_t readBytes(uint8_t *Buf, uint64_t Size, uint64_t Address) const = 0; -- 2.34.1