diff options
author | chriseth <chris@ethereum.org> | 2018-12-05 18:43:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 18:43:31 +0800 |
commit | dd6327594f39d1eb33e83cf75cd0dc955bca2d71 (patch) | |
tree | 80f4e5909bcfd1a319117bc353d3636231c1f800 /test | |
parent | 6efe2a526691f42e83b11cf670ec3e7f51927b3e (diff) | |
parent | 6e5160efa0d077c1800a5e171f5033ed2fb0f801 (diff) | |
download | dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.tar dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.tar.gz dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.tar.bz2 dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.tar.lz dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.tar.xz dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.tar.zst dexon-solidity-dd6327594f39d1eb33e83cf75cd0dc955bca2d71.zip |
Merge pull request #5592 from ethereum/fix-issue-5446
Relax assertion about jumps in loose mode
Diffstat (limited to 'test')
-rw-r--r-- | test/tools/yulopti.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools/yulopti.cpp b/test/tools/yulopti.cpp index e867f049..d0643d73 100644 --- a/test/tools/yulopti.cpp +++ b/test/tools/yulopti.cpp @@ -94,7 +94,7 @@ public: *m_analysisInfo, errorReporter, EVMVersion::byzantium(), - boost::none, + langutil::Error::Type::SyntaxError, Dialect::strictAssemblyForEVM() ); if (!analyzer.analyze(*m_ast) || !errorReporter.errors().empty()) |