aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/InlineAssembly.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-02-28 15:43:18 +0800
committerchriseth <chris@ethereum.org>2018-03-02 00:19:35 +0800
commit5a54cd5c708227ad6982b06de7b799ece5065917 (patch)
treec8ee3f47e62584db34931e81878daf8fe0ce3824 /test/libsolidity/InlineAssembly.cpp
parent7f8e5733391bf2a02a7d1a701591dedddf6341b0 (diff)
downloaddexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.tar
dexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.tar.gz
dexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.tar.bz2
dexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.tar.lz
dexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.tar.xz
dexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.tar.zst
dexon-solidity-5a54cd5c708227ad6982b06de7b799ece5065917.zip
Only warn for shift instructions if not using constantinople
Diffstat (limited to 'test/libsolidity/InlineAssembly.cpp')
-rw-r--r--test/libsolidity/InlineAssembly.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/libsolidity/InlineAssembly.cpp b/test/libsolidity/InlineAssembly.cpp
index 16ab611a..a4dcc4d5 100644
--- a/test/libsolidity/InlineAssembly.cpp
+++ b/test/libsolidity/InlineAssembly.cpp
@@ -783,9 +783,9 @@ BOOST_AUTO_TEST_CASE(shift)
BOOST_AUTO_TEST_CASE(shift_constantinople_warning)
{
- CHECK_PARSE_WARNING("{ pop(shl(10, 32)) }", Warning, "The \"shl\" instruction is only available after the Constantinople hard fork");
- CHECK_PARSE_WARNING("{ pop(shr(10, 32)) }", Warning, "The \"shr\" instruction is only available after the Constantinople hard fork");
- CHECK_PARSE_WARNING("{ pop(sar(10, 32)) }", Warning, "The \"sar\" instruction is only available after the Constantinople hard fork");
+ CHECK_PARSE_WARNING("{ pop(shl(10, 32)) }", Warning, "The \"shl\" instruction is only available for Constantinople-compatible VMs.");
+ CHECK_PARSE_WARNING("{ pop(shr(10, 32)) }", Warning, "The \"shr\" instruction is only available for Constantinople-compatible VMs.");
+ CHECK_PARSE_WARNING("{ pop(sar(10, 32)) }", Warning, "The \"sar\" instruction is only available for Constantinople-compatible VMs.");
}
BOOST_AUTO_TEST_CASE(jump_warning)