* You bop one on the head ... another one appears.

Wed Apr 1 08:20:31 1998  Frank Ch. Eigler  <fche@cygnus.com>

	* mips.igen (SQC2/LQC2): Make bodies sky-target-only also.
This commit is contained in:
Frank Ch. Eigler 1998-04-01 13:19:07 +00:00
parent 4269399c3d
commit 6b0c51c929
2 changed files with 12 additions and 2 deletions

View file

@ -1,10 +1,16 @@
start-sanitize-sky
Wed Apr 1 08:20:31 1998 Frank Ch. Eigler <fche@cygnus.com>
* mips.igen (SQC2/LQC2): Make bodies sky-target-only also.
end-sanitize-sky
start-sanitize-sky
Mon Mar 30 18:41:43 1998 Frank Ch. Eigler <fche@cygnus.com>
* interp.c (decode_coproc): Continuing COP2 work.
(cop_[ls]q): Hide 128-bit COP2 more.
(cop_[ls]q): Make sky-target-only.
* sim-main.h (COP_[LS]Q): Hide 128-bit COP2 more.
* sim-main.h (COP_[LS]Q): Make sky-target-only.
end-sanitize-sky
Mon Mar 30 14:46:05 1998 Gavin Koch <gavin@cygnus.com>

View file

@ -1611,6 +1611,7 @@
"lqc2 r<RT>, <OFFSET>(r<BASE>)"
*r5900:
{
#ifdef TARGET_SKY
unsigned32 instruction = instruction_0;
signed_word offset = SIGNEXTEND((signed_word)((instruction >> 0) & 0x0000FFFF),16);
int destreg = ((instruction >> 16) & 0x0000001F);
@ -1634,6 +1635,7 @@
}
}
}
#endif /* TARGET_SKY */
}
// end-sanitize-sky
@ -2777,6 +2779,7 @@
"sqc2 r<RT>, <OFFSET>(r<BASE>)"
*r5900:
{
#ifdef TARGET_SKY
unsigned32 instruction = instruction_0;
signed_word offset = SIGNEXTEND((signed_word)((instruction >> 0) & 0x0000FFFF),16);
int destreg = ((instruction >> 16) & 0x0000001F);
@ -2803,6 +2806,7 @@
}
}
}
#endif /* TARGET_SKY */
}
// end-sanitize-sky