diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-12-02 18:23:41 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-12-12 00:57:15 +0800 |
commit | bf5dac1fb255a54825952219c852869b8c2663e9 (patch) | |
tree | c65ad4001cf337d2bfa3e554d1eccf58744aae99 /libsolidity | |
parent | 1bf412d9fd9a4d55802ebe4eb006cf835d371d90 (diff) | |
download | dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.tar dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.tar.gz dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.tar.bz2 dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.tar.lz dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.tar.xz dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.tar.zst dexon-solidity-bf5dac1fb255a54825952219c852869b8c2663e9.zip |
Turn off the identity precompile for testing
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index fdcd1dfc..52b5b0d6 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -112,7 +112,7 @@ public: /// Uses a CALL to the identity contract to perform a memory-to-memory copy. /// Stack pre: <size> <target> <source> /// Stack post: - void memoryCopy(bool _useIdentityPrecompile = true); + void memoryCopy(bool _useIdentityPrecompile = false); /// Converts the combined and left-aligned (right-aligned if @a _rightAligned is true) /// external function type <address><function identifier> into two stack slots: |