kvx gcc-4.5 build fixes

More missing struct initialisers, for expressionS vars that in this
case don't need to be initialised.  Also an error: redefinition of
typedef 'symbolS'.  OK, so don't use a typedef.
This commit is contained in:
Alan Modra
2025-06-10 20:28:42 +09:30
parent a9e9e4ac91
commit 04b475ac46
3 changed files with 5 additions and 5 deletions

View File

@@ -140,13 +140,13 @@ struct kvx_pseudo_relocs
struct kvx_reloc *kreloc;
};
typedef struct symbol symbolS;
struct symbol;
struct pseudo_func
{
const char *name;
symbolS *sym;
struct symbol *sym;
struct kvx_pseudo_relocs pseudo_relocs;
};