From 802c7e660c1322c5b06725badb81cb6bdbbae9e6 Mon Sep 17 00:00:00 2001 From: Mike Popoloski Date: Tue, 25 Feb 2025 21:19:00 -0500 Subject: [PATCH] Update mcss version --- docs/CMakeLists.txt | 4 ++-- include/slang/analysis/AbstractFlowAnalysis.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index fcac6a568..a20375d98 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -5,8 +5,8 @@ FetchContent_Declare( mcss - URL https://github.com/MikePopoloski/m.css/releases/download/release-7/mcss.zip - URL_HASH MD5=57cfeaf570374ebf673f0fe156a349b1 + URL https://github.com/MikePopoloski/m.css/releases/download/release-8/mcss.zip + URL_HASH MD5=39c52acc36aa3a604616f22dc2549ad8 SOURCE_DIR "${PROJECT_BINARY_DIR}/mcss" UPDATE_DISCONNECTED YES) FetchContent_MakeAvailable(mcss) diff --git a/include/slang/analysis/AbstractFlowAnalysis.h b/include/slang/analysis/AbstractFlowAnalysis.h index 52137c8e5..e6d9bf0aa 100644 --- a/include/slang/analysis/AbstractFlowAnalysis.h +++ b/include/slang/analysis/AbstractFlowAnalysis.h @@ -21,7 +21,7 @@ concept IsAnyOf = (std::same_as || ...); /// A base class for flow analysis passes. /// /// See background on lattice flow analysis: -/// (). +/// https://en.wikipedia.org/wiki/Data-flow_analysis template class AbstractFlowAnalysis { #define DERIVED *static_cast(this)