This commit is contained in:
nub31
2025-09-20 18:17:40 +02:00
parent 4533f69683
commit 6c56404f1c
10 changed files with 292 additions and 85 deletions

View File

@@ -693,6 +693,7 @@ public class QBEGenerator
StructFuncCallNode expr => EmitStructFuncCall(expr),
StructInitializerNode expr => EmitStructInitializer(expr),
UnaryExpressionNode expr => EmitUnaryExpression(expr),
SizeCompilerMacroNode expr => $"{SizeOf(expr.TargetType)}",
_ => throw new ArgumentOutOfRangeException(nameof(rValue))
};
}