summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
Diffstat (limited to 'lisc')
-rw-r--r--lisc/spill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/spill.c b/lisc/spill.c
index 069e351..e9a6219 100644
--- a/lisc/spill.c
+++ b/lisc/spill.c
@@ -184,7 +184,7 @@ static void
 emit(short op, Ref to, Ref arg0, Ref arg1)
 {
 	if (curi == insb)
-		diag("emit (spill.c): out of memory");
+		diag("spill: too many instructions");
 	*--curi = (Ins){op, to, {arg0, arg1}};
 }