git: 9front

Download patch

ref: 826b2891b7cfff2e85fcfe70be64544e22ef3ef3
parent: b0d25017311b9df4ae92fd3da805a7b291689292
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;
 }
--