git: 9front

Download patch

ref: 4df277af5d16c83503645e11fedcc4651dc55385
parent: 50433ee1f1bb6c0b5d1477fbafeb4d2f5579ec3a
author: Jacob Moody <moody@posixcafe.org>
date: Sat Jul 22 18:45:55 EDT 2023

libmach: setmach: mipsLE* -> spim

Just a naming change, these are called
mipsLE nowwhere else in the system.

--- a/sys/src/libmach/setmach.c
+++ b/sys/src/libmach/setmach.c
@@ -40,13 +40,13 @@
 		A68020,
 		&m68020,
 		&m68020mach,	},
-	{	"mips2LE",			/*plan 9 mips2 little endian*/
+	{	"spim2",			/*plan 9 mips2 little endian*/
 		FMIPS2LE,
 		0,
 		AMIPS,
 		&mmips2le,
 		&mipsmach2le, 	},
-	{	"mipsLE",				/*plan 9 mips little endian*/
+	{	"spim",				/*plan 9 mips little endian*/
 		FMIPSLE,
 		0,
 		AMIPS,
--