diff options
Diffstat (limited to 'pkg/qbe/patch/0001-load-Error-out-when-there-are-too-many-phi-args.patch')
| -rw-r--r-- | pkg/qbe/patch/0001-load-Error-out-when-there-are-too-many-phi-args.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/pkg/qbe/patch/0001-load-Error-out-when-there-are-too-many-phi-args.patch b/pkg/qbe/patch/0001-load-Error-out-when-there-are-too-many-phi-args.patch deleted file mode 100644 index 5c1d4c27..00000000 --- a/pkg/qbe/patch/0001-load-Error-out-when-there-are-too-many-phi-args.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f7bd663aa19c84da21d5f6c15ca50daa9862ad9a Mon Sep 17 00:00:00 2001 -From: Michael Forney <mforney@mforney.org> -Date: Sun, 21 Apr 2019 12:55:53 -0700 -Subject: [PATCH] load: Error out when there are too many phi args - ---- - load.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/load.c b/load.c -index 8e2dd64..9894000 100644 ---- a/load.c -+++ b/load.c -@@ -330,6 +330,8 @@ def(Slice sl, bits msk, Blk *b, Ins *i, Loc *il) - p->to = r; - p->cls = sl.cls; - p->narg = b->npred; -+ if (b->npred >= NPred) -+ die("def, too many phi args (%u)", b->npred); - for (np=0; np<b->npred; ++np) { - bp = b->pred[np]; - if (!bp->s2 --- -2.21.0 - |
