diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-07-19 07:03:38 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:28 -0400 |
commit | a280eb6597da33ea23f8349f74a20416e5519e7e (patch) | |
tree | e26aafc90d155950b339c48c298bfe8c2c60b77c /lisc/ssa.c | |
parent | e5a7482b54f0840d4b9fe37488020410cd67a684 (diff) | |
download | roux-a280eb6597da33ea23f8349f74a20416e5519e7e.tar.gz |
export error functions
Diffstat (limited to 'lisc/ssa.c')
-rw-r--r-- | lisc/ssa.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; t0<f->ntmp; t0++) { f->sym[t0].type = STmp; snprintf(f->sym[t0].name, NString, "%s%d", |