From 8e1ac8b844fdaa787be2d0a3f33fb4acef5debe2 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 13 Feb 2022 13:32:20 +0800 Subject: [PATCH] Revert "core: remove legacy synthesized filename" This reverts commit 92c1bc2149ea9ce3af2a8ba1e05d6cc419813b5b. --- artiq/coredevice/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/coredevice/core.py b/artiq/coredevice/core.py index 9cf9a6117..e4781fbec 100644 --- a/artiq/coredevice/core.py +++ b/artiq/coredevice/core.py @@ -238,7 +238,7 @@ def symbolize(library, addresses): location = next(lines) filename, line = location.rsplit(":", 1) - if filename == "??": + if filename == "??" or filename == "": continue if line == "?": line = -1