git: 9front

Download patch

ref: 80216ac2efb13340464344cfca1b3c8aeec5941b
parent: afbf5d1e59b986b12094ce9c40ea1c2bffffa72c
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Thu Mar 28 11:16:21 EDT 2024

ktrace: _intrr -> noteret (pc64)

The _intrr symbol has been removed from pc64/l.s
in commit be5cdf69f40f121de7a880bbfeef310b9d6acc17
and replaced with noteret.

--- a/sys/src/cmd/ktrace.c
+++ b/sys/src/cmd/ktrace.c
@@ -285,7 +285,7 @@
 		symoff(buf, sizeof buf, pc, CANY);
 		fmt(buf, pc);
 
-		if(strcmp(s.name, "_intrr") == 0)
+		if(strcmp(s.name, "noteret") == 0)
 			isintrr = 1;
 		else
 			isintrr = 0;
--