diff options
author | chriseth <chris@ethereum.org> | 2017-06-15 14:39:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 14:39:02 +0800 |
commit | 66881bd675ad483ae0bba813c79257fbc30ee941 (patch) | |
tree | 7da1d2982ae3343ae8842bbf32b3aeaea99c8018 /libevmasm/SemanticInformation.cpp | |
parent | 3c4671a2dafc3fc29f5662203cceeb17a0d0e36b (diff) | |
parent | 42b61171d981ceccd5f79af5508db92b4f2ad54b (diff) | |
download | dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.tar dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.tar.gz dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.tar.bz2 dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.tar.lz dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.tar.xz dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.tar.zst dexon-solidity-66881bd675ad483ae0bba813c79257fbc30ee941.zip |
Merge branch 'develop' into asm-aux
Diffstat (limited to 'libevmasm/SemanticInformation.cpp')
-rw-r--r-- | libevmasm/SemanticInformation.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libevmasm/SemanticInformation.cpp b/libevmasm/SemanticInformation.cpp index db4ee867..f63f0c61 100644 --- a/libevmasm/SemanticInformation.cpp +++ b/libevmasm/SemanticInformation.cpp @@ -137,6 +137,7 @@ bool SemanticInformation::isDeterministic(AssemblyItem const& _item) case Instruction::CALL: case Instruction::CALLCODE: case Instruction::DELEGATECALL: + case Instruction::STATICCALL: case Instruction::CREATE: case Instruction::CREATE2: case Instruction::GAS: @@ -165,6 +166,7 @@ bool SemanticInformation::invalidatesMemory(Instruction _instruction) case Instruction::CALL: case Instruction::CALLCODE: case Instruction::DELEGATECALL: + case Instruction::STATICCALL: return true; default: return false; |