* interp.c (sim_firmware_command): Initialize `address'.

This commit is contained in:
Andrew Cagney 2002-06-18 21:32:15 +00:00
parent fd3c93d5a7
commit b4b6c9398a
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-06-18 Andrew Cagney <cagney@redhat.com>
* interp.c (sim_firmware_command): Initialize `address'.
2002-06-16 Andrew Cagney <ac131313@redhat.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View File

@ -1077,7 +1077,10 @@ sim_firmware_command (SIM_DESC sd, char *arg)
}
}
else
address_present = 0;
{
address_present = 0;
address = -1; /* Dummy value. */
}
}
if (! strncmp (arg, "idt", 3))