diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-10-04 22:09:36 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-10-04 22:09:36 +0200 |
commit | 36876b95224938d1388ca04d5dc5dc40481dcdd3 (patch) | |
tree | f488713d67180e877287ed8729eae6d57d806989 | |
parent | a23d7cdb841643216bc620fe1bd09bfb4f77759c (diff) |
8c: dont abort() when running out of registers.
-rw-r--r-- | sys/src/cmd/8c/txt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/src/cmd/8c/txt.c b/sys/src/cmd/8c/txt.c index 258d90f8e..2974af4cc 100644 --- a/sys/src/cmd/8c/txt.c +++ b/sys/src/cmd/8c/txt.c @@ -311,7 +311,6 @@ regalloc(Node *n, Node *tn, Node *o) if(reg[i] == 0) goto out; diag(tn, "out of fixed registers"); -abort(); goto err; case TFLOAT: |