Browse Source

Bugfix: Tag takes one byte (for JUMPDEST)

cl-refactor
Christian 10 years ago
parent
commit
1d3b26617a
  1. 2
      liblll/Assembly.cpp

2
liblll/Assembly.cpp

@ -54,6 +54,7 @@ unsigned Assembly::bytesRequired() const
switch (i.m_type)
{
case Operation:
case Tag: // 1 byte for the JUMPDEST
ret++;
break;
case PushString:
@ -69,7 +70,6 @@ unsigned Assembly::bytesRequired() const
case PushData:
case PushSub:
ret += 1 + br;
case Tag:;
default:;
}
if (dev::bytesRequired(ret) <= br)

Loading…
Cancel
Save