Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
remove short version hash index in syntax builder
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed May 22, 2020
1 parent c9499d4 commit ffdc788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/Ancient.Compiler.Service/Tokens/AssemblerSyntax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ from val1 in HexToken
public virtual Parser<IInputToken> Call_I =>
(from dword in InstructionToken(IID.call_i)
from sign in SignatureToken
select new InstructionExpression(new call_i(Module.CompositeIndex(sign))))
select new InstructionExpression(new call_i(sign)))
.Token()
.WithPosition()
.Named("call_inner expression");
Expand Down

0 comments on commit ffdc788

Please sign in to comment.