mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
sim: m32c: rename open symbol to avoid collisions
If the header files define open(), make sure our local open var doesn't shadow it.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2021-05-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* gdb-if.c (open): Rename to ...
|
||||
(is_open): ... this.
|
||||
(sim_open, sim_close): Rename open to is_open.
|
||||
|
||||
2021-05-16 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* int.c, misc.c, opc2c.c, reg.c, srcdest.c: Include defs.h.
|
||||
|
@ -58,7 +58,7 @@ static struct sim_state the_minisim = {
|
||||
"This is the sole m32c minisim instance. See libsim.a's global variables."
|
||||
};
|
||||
|
||||
static int open;
|
||||
static int is_open;
|
||||
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind,
|
||||
@ -66,7 +66,7 @@ sim_open (SIM_OPEN_KIND kind,
|
||||
struct bfd *abfd, char * const *argv)
|
||||
{
|
||||
setbuf (stdout, 0);
|
||||
if (open)
|
||||
if (is_open)
|
||||
fprintf (stderr, "m32c minisim: re-opened sim\n");
|
||||
|
||||
/* The 'run' interface doesn't use this function, so we don't care
|
||||
@ -88,7 +88,7 @@ sim_open (SIM_OPEN_KIND kind,
|
||||
init_mem ();
|
||||
init_regs ();
|
||||
|
||||
open = 1;
|
||||
is_open = 1;
|
||||
return &the_minisim;
|
||||
}
|
||||
|
||||
@ -107,7 +107,7 @@ sim_close (SIM_DESC sd, int quitting)
|
||||
/* Not much to do. At least free up our memory. */
|
||||
init_mem ();
|
||||
|
||||
open = 0;
|
||||
is_open = 0;
|
||||
}
|
||||
|
||||
static bfd *
|
||||
|
Reference in New Issue
Block a user