summaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-24 23:53:08 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-24 23:53:08 +0000
commit7813a12ed59274989ce954c931bf02ebea2a0104 (patch)
tree24737d8f7e6708b68da62bae17ada6b99c941362 /src/codegen
parent5ab67fe0f9e9a61b1edab343a5d0819895fab74f (diff)
Fix for #115
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/codegen.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/codegen/codegen.c b/src/codegen/codegen.c
index 038f3cb..f239bb6 100644
--- a/src/codegen/codegen.c
+++ b/src/codegen/codegen.c
@@ -12,7 +12,6 @@
#include "zprep_plugin.h"
// Emit literal expression (int, float, string, char)
-// Emit literal expression (int, float, string, char)
static void codegen_literal_expr(ASTNode *node, FILE *out)
{
if (node->literal.type_kind == LITERAL_STRING)
@@ -1034,6 +1033,7 @@ void codegen_expression(ParserContext *ctx, ASTNode *node, FILE *out)
}
int is_zen_struct = 0;
+ int is_union = 0;
StructRef *sr = ctx->parsed_structs_list;
while (sr)
{
@@ -1041,6 +1041,10 @@ void codegen_expression(ParserContext *ctx, ASTNode *node, FILE *out)
strcmp(sr->node->strct.name, struct_name) == 0)
{
is_zen_struct = 1;
+ if (sr->node->strct.is_union)
+ {
+ is_union = 1;
+ }
break;
}
sr = sr->next;
@@ -1048,7 +1052,14 @@ void codegen_expression(ParserContext *ctx, ASTNode *node, FILE *out)
if (is_zen_struct)
{
- fprintf(out, "(struct %s){", struct_name);
+ if (is_union)
+ {
+ fprintf(out, "(union %s){", struct_name);
+ }
+ else
+ {
+ fprintf(out, "(struct %s){", struct_name);
+ }
}
else
{