diff options
author | chriseth <chris@ethereum.org> | 2017-05-05 20:25:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-05 20:25:43 +0800 |
commit | 0582fcb93b2407379b5e4e4ce55c3f418e7ff433 (patch) | |
tree | 2770da9c5727476ff8b1ad8559cb81335f25b400 /libsolidity/codegen/CompilerUtils.h | |
parent | 2d89cfaa91bcc36db415b5c07f1bd821398da96e (diff) | |
parent | 28f10f4783bd4365654191740069a7112be03d92 (diff) | |
download | dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.tar dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.tar.gz dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.tar.bz2 dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.tar.lz dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.tar.xz dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.tar.zst dexon-solidity-0582fcb93b2407379b5e4e4ce55c3f418e7ff433.zip |
Merge pull request #2194 from ethereum/removeerrorlabel
Remove error label / invalid jump label.
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index b9ed6757..4140ce8b 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -109,10 +109,6 @@ public: /// Stack post: <updated_memptr> void zeroInitialiseMemoryArray(ArrayType const& _type); - /// Uses a CALL to the identity contract to perform a memory-to-memory copy. - /// Stack pre: <size> <target> <source> - /// Stack post: - void memoryCopyPrecompile(); /// Copies full 32 byte words in memory (regions cannot overlap), i.e. may copy more than length. /// Stack pre: <size> <target> <source> /// Stack post: |