From 0e62cd11daadc2c2413f275c437675a5c359b722 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Mon, 16 May 2022 18:47:15 +0100 Subject: [PATCH] Don't issue DEPRECATED for now no-op clock_enable attribute Fixes #3421 --- src/V3LinkParse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3LinkParse.cpp b/src/V3LinkParse.cpp index 93222023e..429234eee 100644 --- a/src/V3LinkParse.cpp +++ b/src/V3LinkParse.cpp @@ -305,7 +305,7 @@ private: VL_DO_DANGLING(nodep->unlinkFrBack()->deleteTree(), nodep); } else if (nodep->attrType() == VAttrType::VAR_CLOCK_ENABLE) { UASSERT_OBJ(m_varp, nodep, "Attribute not attached to variable"); - nodep->v3warn(DEPRECATED, "'clock_enable' attribute is deprecated and has no effect"); + // Accepted and silently ignored for backward compatibility, but has no effect VL_DO_DANGLING(nodep->unlinkFrBack()->deleteTree(), nodep); } else if (nodep->attrType() == VAttrType::VAR_FORCEABLE) { UASSERT_OBJ(m_varp, nodep, "Attribute not attached to variable");