From a280eb6597da33ea23f8349f74a20416e5519e7e Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Sun, 19 Jul 2015 07:03:38 -0400 Subject: export error functions --- lisc/ssa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisc/ssa.c') diff --git a/lisc/ssa.c b/lisc/ssa.c index 2ad1755..5546190 100644 --- a/lisc/ssa.c +++ b/lisc/ssa.c @@ -189,7 +189,7 @@ ssafix(Fn *f, int t) /* add new symbols */ f->sym = realloc(f->sym, f->ntmp * sizeof f->sym[0]); if (!f->sym) - abort(); + diag("ssafix: out of memory"); for (t1=t0; t0ntmp; t0++) { f->sym[t0].type = STmp; snprintf(f->sym[t0].name, NString, "%s%d", -- cgit 1.4.1