* cleanup

2000-10-19  Frank Ch. Eigler  <fche@redhat.com>

	On advice from Chris G. Demetriou <cgd@sibyte.com>:
	* sim-main.h (GPR_CLEAR): Remove unused alternative macro.
This commit is contained in:
Frank Ch. Eigler 2000-10-19 10:52:52 +00:00
parent 73cd359e15
commit d3ee60d90e
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2000-10-19 Frank Ch. Eigler <fche@redhat.com>
On advice from Chris G. Demetriou <cgd@sibyte.com>:
* sim-main.h (GPR_CLEAR): Remove unused alternative macro.
Thu Jul 27 22:02:05 2000 Andrew Cagney <cagney@b1.cygnus.com>
From Maciej W. Rozycki <macro@ds2.pg.gda.pl>:

View File

@ -773,12 +773,7 @@ char* pr_addr PARAMS ((SIM_ADDR addr));
char* pr_uword64 PARAMS ((uword64 addr));
/* Some mips flavours split their GPR banks into two halves. */
#ifdef SPLIT_GPR
#define GPR_CLEAR(N) do { GPR_SET((N),0); GPR1_SET((N),0); } while (0)
#else
#define GPR_CLEAR(N) do { GPR_SET((N),0); } while (0)
#endif
void mips_cpu_exception_trigger(SIM_DESC sd, sim_cpu* cpu, address_word pc);
void mips_cpu_exception_suspend(SIM_DESC sd, sim_cpu* cpu, int exception);