add_goto_pass does not add goto instruction before label whenever label is the very first instruction
function fib, 1
label start
...
Should be transformed into, but does not
function fib, 1
goto start
label start
...
function fib, 1
label start
...
Should be transformed into, but does not
function fib, 1
goto start
label start
...