aboutsummaryrefslogtreecommitdiff
path: root/targ.c
diff options
context:
space:
mode:
Diffstat (limited to 'targ.c')
-rw-r--r--targ.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/targ.c b/targ.c
index 6e89c51..7e43555 100644
--- a/targ.c
+++ b/targ.c
@@ -12,7 +12,7 @@ static const struct target alltargs[] = {
.typevalist = &(struct type){
.kind = TYPEARRAY, .prop = PROPOBJECT|PROPDERIVED|PROPAGGR,
.align = 8, .size = 24,
- .array = {1}, .base = &(struct type){
+ .u.array = {1}, .base = &(struct type){
.kind = TYPESTRUCT, .prop = PROPOBJECT|PROPAGGR,
.align = 8, .size = 24,
},
@@ -24,7 +24,7 @@ static const struct target alltargs[] = {
.typevalist = &(struct type){
.kind = TYPESTRUCT, .prop = PROPOBJECT|PROPAGGR,
.align = 8, .size = 32,
- .structunion.tag = "va_list",
+ .u.structunion.tag = "va_list",
},
.typewchar = &typeuint,
},
@@ -54,6 +54,6 @@ targinit(const char *name)
}
if (!targ)
fatal("unknown target '%s'", name);
- typechar.basic.issigned = targ->signedchar;
+ typechar.u.basic.issigned = targ->signedchar;
typeadjvalist = typeadjust(targ->typevalist);
}