mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 09:29:38 +00:00
compiler: fail if some functions are missing
Signed-off-by: Evgeniy Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
8a0429036b
commit
a885f84cad
1 changed files with 3 additions and 0 deletions
|
@ -2168,6 +2168,9 @@ func (c *codegen) replaceLabelWithOffset(ip int, arg []byte) (int, error) {
|
|||
if int(index) > len(c.l) {
|
||||
return 0, fmt.Errorf("unexpected label number: %d (max %d)", index, len(c.l))
|
||||
}
|
||||
if c.l[index] < 0 {
|
||||
return 0, fmt.Errorf("invalid label target: %d at %d", c.l[index], ip)
|
||||
}
|
||||
offset := c.l[index] - ip
|
||||
if offset > math.MaxInt32 || offset < math.MinInt32 {
|
||||
return 0, fmt.Errorf("label offset is too big at the instruction %d: %d (max %d, min %d)",
|
||||
|
|
Loading…
Reference in a new issue