aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2025-06-10 20:28:42 +0930
committerAlan Modra <amodra@gmail.com>2025-06-11 07:26:07 +0930
commit04b475ac467a2af500a942c36ef122138f13d3a7 (patch)
tree5d0bab2796ccadcca5cc2d1d67731643ad597d4c /include
parenta9e9e4ac91e29c836cd97e41feb6d2e928ec2df8 (diff)
downloadbinutils-04b475ac467a2af500a942c36ef122138f13d3a7.zip
binutils-04b475ac467a2af500a942c36ef122138f13d3a7.tar.gz
binutils-04b475ac467a2af500a942c36ef122138f13d3a7.tar.bz2
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.
Diffstat (limited to 'include')
-rw-r--r--include/opcode/kvx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opcode/kvx.h b/include/opcode/kvx.h
index aa51903..9a3c39c 100644
--- a/include/opcode/kvx.h
+++ b/include/opcode/kvx.h
@@ -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;
};