From df778d530e6ccff90c86efd6513dfd4acfc28a27 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 31 Jul 2025 11:21:17 +0200 Subject: [PATCH] Add source information to missing function errors --- user-side-compiler/asm-function.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/user-side-compiler/asm-function.lisp b/user-side-compiler/asm-function.lisp index f1aa905..bfc20ed 100644 --- a/user-side-compiler/asm-function.lisp +++ b/user-side-compiler/asm-function.lisp @@ -29,5 +29,6 @@ (cerror "Create dummy function with placeholder address." 'missing-function-error :format-control "~A" - :format-arguments (list (name token))) + :format-arguments (list (name token)) + :source (source token)) (add-asm-function (name token) #xC0FE)))))