Created
December 10, 2017 16:23
-
-
Save death/1a8c18943f4c6ff7b503899913ee5454 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From a07ad9d65805c63e33e5376c9cda97d6962b8900 Mon Sep 17 00:00:00 2001 | |
| From: death <death@adeht.org> | |
| Date: Sun, 10 Dec 2017 04:55:15 +0200 | |
| Subject: [PATCH] assembler: Make sure to process all back-patches | |
| --- | |
| src/compiler/assem.lisp | 3 ++- | |
| 1 file changed, 2 insertions(+), 1 deletion(-) | |
| diff --git a/src/compiler/assem.lisp b/src/compiler/assem.lisp | |
| index 467ee1647..540735591 100644 | |
| --- a/src/compiler/assem.lisp | |
| +++ b/src/compiler/assem.lisp | |
| @@ -1139,7 +1139,8 @@ | |
| (if tail | |
| (setf (cdr tail) next) | |
| (setf (segment-annotations segment) next))) | |
| - (setf next (cdr prev)))))) | |
| + (when prev | |
| + (setf next (cdr prev))))))) | |
| (cond ((back-patch-p note) | |
| (fill-in (back-patch-fun note) | |
| (back-patch-size note))) | |
| -- | |
| 2.15.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment