Update of /cvsroot/linux-mips/linux/arch/mips/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv20922
Modified Files:
gdb-low.S
Log Message:
Use cfc1 to access fpu control registers.
Index: gdb-low.S
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/gdb-low.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gdb-low.S 2001/10/24 23:32:54 1.2
+++ gdb-low.S 2001/10/31 18:54:09 1.3
@@ -145,9 +145,9 @@
* FPU control registers
*/
- mfc1 v0,CP1_STATUS
+ cfc1 v0,CP1_STATUS
sw v0,GDB_FR_FSR(sp)
- mfc1 v0,CP1_REVISION
+ cfc1 v0,CP1_REVISION
sw v0,GDB_FR_FIR(sp)
/*
|