Skip to content

Commit 2f4ea2e

Browse files
authored
Fix fteqcc tripping over aliased fields (#344)
1 parent 7044287 commit 2f4ea2e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

engine/qclib/qccmain.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4114,6 +4114,9 @@ static unsigned short QCC_PR_WriteProgdefs (char *filename)
41144114
if (d->type->type != ev_field)
41154115
continue;
41164116

4117+
if (d->symbolheader != d)
4118+
continue;
4119+
41174120
switch (d->type->aux_type->type)
41184121
{
41194122
case ev_float:

0 commit comments

Comments
 (0)