git: plan9front

Download patch

ref: cfbe22b369a072c55d03f43c72f4e5230fec87ec
parent: f37430b1ab89e98ce42ecda8e66f08683e6ddb78
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Wed Sep 10 10:54:36 EDT 2025

libmach: fix D_REGREG operand parsing for arm

--- a/sys/src/libmach/5obj.c
+++ b/sys/src/libmach/5obj.c
@@ -114,6 +114,9 @@
 	case D_FCONST:
 		skip(bp, 8);
 		break;
+	case D_REGREG:
+		skip(bp, 1);
+		break;
 	}
 	return a;
 }
--