mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
LLL: support multiple strings in LIT
This commit is contained in:
parent
979d18f19c
commit
6d97a56af1
@ -287,10 +287,10 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s)
|
|||||||
if (pos.m_asm.deposit() != 1)
|
if (pos.m_asm.deposit() != 1)
|
||||||
error<InvalidDeposit>();
|
error<InvalidDeposit>();
|
||||||
}
|
}
|
||||||
else if (ii == 2 && !i.tag() && i.which() == sp::utree_type::string_type)
|
else if (ii >= 2 && !i.tag() && i.which() == sp::utree_type::string_type)
|
||||||
{
|
{
|
||||||
auto sr = i.get<sp::basic_string<boost::iterator_range<char const*>, sp::utree_type::string_type>>();
|
auto sr = i.get<sp::basic_string<boost::iterator_range<char const*>, sp::utree_type::string_type>>();
|
||||||
data = bytes((byte const*)sr.begin(), (byte const*)sr.end());
|
data.insert(data.end(), (byte const *)sr.begin(), (byte const*)sr.end());
|
||||||
}
|
}
|
||||||
else if (ii >= 2 && !i.tag() && i.which() == sp::utree_type::any_type)
|
else if (ii >= 2 && !i.tag() && i.which() == sp::utree_type::any_type)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user