Set codecopy limit for data to 32 bytes.

This commit is contained in:
chriseth 2018-12-06 15:33:26 +01:00
parent 871ea22bb9
commit 53f531ecb0

View File

@ -1205,7 +1205,7 @@ void CompilerUtils::storeStringData(bytesConstRef _data)
{
//@todo provide both alternatives to the optimiser
// stack: mempos
if (_data.size() <= 128)
if (_data.size() <= 32)
{
for (unsigned i = 0; i < _data.size(); i += 32)
{