Re: loongarch readelf support

Commit 89c70cd358b8 apparently results in a bogus "value may be used
uninitialized" warning with some combination of compiler and
optimisation options.

	* readelf.c (target_specific_reloc_handling): Init value.
This commit is contained in:
Alan Modra 2023-06-06 19:56:56 +09:30
parent 92deb60f27
commit d3f340763b

View File

@ -14017,7 +14017,7 @@ target_specific_reloc_handling (Filedata *filedata,
case 107: /* R_LARCH_ADD_ULEB128. */
case 108: /* R_LARCH_SUB_ULEB128. */
{
uint64_t value;
uint64_t value = 0;
unsigned int reloc_size = 0;
int leb_ret = 0;