Use latest aebytecode. #527

Merged
zxq9 merged 2 commits from latest_aebytecode into fortuna 2019-03-04 22:22:37 +09:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{erl_opts, [debug_info]}.
{deps, [ {aebytecode, {git, "https://github.com/aeternity/aebytecode.git",
{tag,"v2.0.1"}}}
{ref,"2369533"}}}
, {getopt, "1.0.1"}
]}.

View File

@ -1,7 +1,7 @@
{"1.1.0",
[{<<"aebytecode">>,
{git,"https://github.com/aeternity/aebytecode.git",
{ref,"01ae99f7e8be7917d213e1ef04dc6d613a046b98"}},
{ref,"23695330ef1767c78193f330c3c3effdb76d4045"}},
0},
{<<"aeserialization">>,
{git,"https://github.com/aeternity/aeserialization.git",

View File

@ -95,7 +95,7 @@ to_scode(_Env, #integer{ value = N }) ->
to_scode(Env, #var_ref{name = X}) ->
case lookup_var(Env, X) of
false -> error({unbound_variable, X, Env});
{stack, N} -> [aeb_fate_code:dup(N)];
{stack, N} -> [aeb_fate_code:dup(?i(N))];
{arg, N} -> [aeb_fate_code:push({arg, N})]
end;
to_scode(Env, #binop{ op = Op, left = A, right = B }) ->