tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] New ARM warning. Does it reveal an issue?


From: Christian Jullien
Subject: Re: [Tinycc-devel] New ARM warning. Does it reveal an issue?
Date: Sat, 9 Jun 2018 11:08:10 +0200

No news from maintainers, so I ping again.

Beside the warning, what happens with prepare_dynamic_rel in case of ARM/ARM64 processor?

It fails to default case which does nothing so this entire function is just as return 0;

If it’s Ok, sym_index = ELFW(R_SYM)(rel->r_info); should move to the two cases that use it.

 

From: Christian Jullien [mailto:address@hidden
Sent: lundi 30 avril 2018 07:28
To: address@hidden
Subject: New ARM warning. Does it reveal an issue?

 

Hi all,

 

Recompiling mod on ARM gives me this new Warning :

tccelf.c:869:9: warning: variable ‘sym_index’ set but not used [-Wunused-but-set-variable]

     int sym_index, type, count;

         ^~~~~~~~~

 

On:

 

/* count the number of dynamic relocations so that we can reserve

   their space */

static int prepare_dynamic_rel(TCCState *s1, Section *sr)

{

    ElfW_Rel *rel;

    int sym_index, type, count;

 

    count = 0;

    for_each_elem(sr, 0, rel, ElfW_Rel) {

        sym_index = ELFW(R_SYM)(rel->r_info);

 

Indeed, code that follows is  for TCC_TARGET_I386 or TCC_TARGET_X86_64

 

Nothing related to ARM or ARM64.

 

Is it annoying, can you please at least fix this warning?

 

Christian


reply via email to

[Prev in Thread] Current Thread [Next in Thread]