qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit e3356b23d5e33c2bd3975b05af017ffb11d77bdd
parent f938fccd2bf929fb3b9a7b87b57056f43a2667a5
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Fri, 24 Jul 2015 13:46:11 -0400

standardize error message

Diffstat:
Mlisc/spill.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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}}; }