diff options
author | chriseth <chris@ethereum.org> | 2018-01-20 00:23:49 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-10-17 20:12:11 +0800 |
commit | 16c2a775fd532c301eae3abecc8d68c5c421a9a0 (patch) | |
tree | e026394334ac6cae6eda20302a13d24fbfcd83f9 /test | |
parent | 5e01d767d02d064a064a67dcf95ee299c46f741f (diff) | |
download | dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.tar dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.tar.gz dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.tar.bz2 dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.tar.lz dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.tar.xz dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.tar.zst dexon-solidity-16c2a775fd532c301eae3abecc8d68c5c421a9a0.zip |
Handle externally supplied variables correctly in disambiguator.
Diffstat (limited to 'test')
-rw-r--r-- | test/libyul/Common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libyul/Common.cpp b/test/libyul/Common.cpp index 4c50180a..d224bdcd 100644 --- a/test/libyul/Common.cpp +++ b/test/libyul/Common.cpp @@ -86,7 +86,7 @@ pair<shared_ptr<Block>, shared_ptr<assembly::AsmAnalysisInfo>> dev::yul::test::p assembly::Block dev::yul::test::disambiguate(string const& _source, bool _yul) { auto result = parse(_source, _yul); - return boost::get<Block>(Disambiguator(*result.second)(*result.first)); + return boost::get<Block>(Disambiguator(*result.second, {})(*result.first)); } string dev::yul::test::format(string const& _source, bool _yul) |