patch-2.3.48 linux/include/asm-mips/asm.h
Next file: linux/include/asm-mips/asmmacro.h
Previous file: linux/include/asm-ia64/siginfo.h
Back to the patch index
Back to the overall index
- Lines: 21
- Date:
Thu Feb 24 22:52:30 2000
- Orig file:
v2.3.47/linux/include/asm-mips/asm.h
- Orig date:
Thu Jun 26 12:33:39 1997
diff -u --recursive --new-file v2.3.47/linux/include/asm-mips/asm.h linux/include/asm-mips/asm.h
@@ -151,17 +151,17 @@
/*
* MIPS ISA IV/V movn/movz instructions and equivalents for older CPUs.
*/
-#if _MIPS_ISA == _MIPS_ISA_MIPS1
+#if (_MIPS_ISA == _MIPS_ISA_MIPS1)
#define MOVN(rd,rs,rt) \
.set push; \
- .set reorder; \
+ .set noreorder; \
beqz rt,9f; \
move rd,rs; \
.set pop; \
9:
#define MOVZ(rd,rs,rt) \
.set push; \
- .set reorder; \
+ .set noreorder; \
bnez rt,9f; \
move rd,rt; \
.set pop; \
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)