Comment about zero length.

This commit is contained in:
chriseth 2017-06-26 16:27:12 +02:00 committed by Alex Beregszaszi
parent d94a12a34c
commit ab15040caa

View File

@ -110,10 +110,12 @@ public:
void zeroInitialiseMemoryArray(ArrayType const& _type); void zeroInitialiseMemoryArray(ArrayType const& _type);
/// Copies full 32 byte words in memory (regions cannot overlap), i.e. may copy more than length. /// Copies full 32 byte words in memory (regions cannot overlap), i.e. may copy more than length.
/// Length can be zero, in this case, it copies nothing.
/// Stack pre: <size> <target> <source> /// Stack pre: <size> <target> <source>
/// Stack post: /// Stack post:
void memoryCopy32(); void memoryCopy32();
/// Copies data in memory (regions cannot overlap). /// Copies data in memory (regions cannot overlap).
/// Length can be zero, in this case, it copies nothing.
/// Stack pre: <size> <target> <source> /// Stack pre: <size> <target> <source>
/// Stack post: /// Stack post:
void memoryCopy(); void memoryCopy();