Add OpFunctionCall

This commit is contained in:
ReinUsesLisp 2018-11-01 01:54:10 -03:00
parent 798f8a5866
commit 4043020f45
2 changed files with 13 additions and 0 deletions

View file

@ -160,6 +160,10 @@ class Module {
/// Ends a function.
Id OpFunctionEnd();
/// Call a function.
Id OpFunctionCall(Id result_type, Id function,
const std::vector<Id>& arguments = {});
// Flow
/// Declare a structured loop.