From 7e026d824a061225296b9ac53a21821e33aa9b5a Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Wed, 25 Jun 2025 11:37:40 +1200 Subject: [PATCH] dpicall.cc: Fix sans-plugin function call --- frontends/ast/dpicall.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/ast/dpicall.cc b/frontends/ast/dpicall.cc index 07314e3d7..d76318739 100644 --- a/frontends/ast/dpicall.cc +++ b/frontends/ast/dpicall.cc @@ -153,7 +153,7 @@ YOSYS_NAMESPACE_END YOSYS_NAMESPACE_BEGIN -AST::AstNode *AST::dpi_call(AstSrcLocType loc, const std::string&, const std::string &fname, const std::vector&, const std::vector&) +std::unique_ptr AST::dpi_call(AstSrcLocType, const std::string&, const std::string &fname, const std::vector&, const std::vector>&) { log_error("Can't call DPI function `%s': this version of yosys is built without plugin support\n", fname.c_str()); }