[llvm] r221863 - Update \param(s) in MemoryObject::readBytes(). [-Wdocumentation]
NAKAMURA Takumi
geek4civic at gmail.com
Wed Nov 12 20:56:41 PST 2014
Author: chapuni
Date: Wed Nov 12 22:56:41 2014
New Revision: 221863
URL: http://llvm.org/viewvc/llvm-project?rev=221863&view=rev
Log:
Update \param(s) in MemoryObject::readBytes(). [-Wdocumentation]
Modified:
llvm/trunk/include/llvm/Support/MemoryObject.h
Modified: llvm/trunk/include/llvm/Support/MemoryObject.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MemoryObject.h?rev=221863&r1=221862&r2=221863&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MemoryObject.h (original)
+++ llvm/trunk/include/llvm/Support/MemoryObject.h Wed Nov 12 22:56:41 2014
@@ -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;
More information about the llvm-commits
mailing list