aboutsummaryrefslogtreecommitdiffstats
path: root/ArrayUtils.h
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-07-14 17:58:16 +0800
committerchriseth <c@ethdev.com>2015-07-14 17:58:16 +0800
commit73275e18250954431c58323a2d678409b0824568 (patch)
tree47a2216e5d55389211e30b5117a8f2e123923898 /ArrayUtils.h
parentda818b1acdd8f02fccd18779cfb0ac397d7e61b1 (diff)
downloaddexon-solidity-73275e18250954431c58323a2d678409b0824568.tar
dexon-solidity-73275e18250954431c58323a2d678409b0824568.tar.gz
dexon-solidity-73275e18250954431c58323a2d678409b0824568.tar.bz2
dexon-solidity-73275e18250954431c58323a2d678409b0824568.tar.lz
dexon-solidity-73275e18250954431c58323a2d678409b0824568.tar.xz
dexon-solidity-73275e18250954431c58323a2d678409b0824568.tar.zst
dexon-solidity-73275e18250954431c58323a2d678409b0824568.zip
Use only a single stack slot for storage references.
Diffstat (limited to 'ArrayUtils.h')
-rw-r--r--ArrayUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ArrayUtils.h b/ArrayUtils.h
index c047fdcc..80ffc008 100644
--- a/ArrayUtils.h
+++ b/ArrayUtils.h
@@ -41,8 +41,8 @@ public:
/// Copies an array to an array in storage. The arrays can be of different types only if
/// their storage representation is the same.
- /// Stack pre: source_reference [source_byte_offset/source_length] target_reference target_byte_offset
- /// Stack post: target_reference target_byte_offset
+ /// Stack pre: source_reference [source_length] target_reference
+ /// Stack post: target_reference
void copyArrayToStorage(ArrayType const& _targetType, ArrayType const& _sourceType) const;
/// Copies the data part of an array (which cannot be dynamically nested) from anywhere
/// to a given position in memory.