From dfd8c7e244a8a6b3666221fa4a7e611e3a97467d Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Wed, 25 Oct 2023 02:16:46 +0200 Subject: Add missing includes (#6049) These missing includes were not a problem in our standard build configuration, but were breaking other build configurations. --- src/analysis/liveness-transfer-function.h | 1 + src/analysis/reaching-definitions-transfer-function.h | 2 ++ 2 files changed, 3 insertions(+) (limited to 'src/analysis') diff --git a/src/analysis/liveness-transfer-function.h b/src/analysis/liveness-transfer-function.h index 802f7f3fc..7cc477178 100644 --- a/src/analysis/liveness-transfer-function.h +++ b/src/analysis/liveness-transfer-function.h @@ -1,6 +1,7 @@ #ifndef wasm_analysis_liveness_transfer_function_h #define wasm_analysis_liveness_transfer_function_h +#include "lattice.h" #include "lattices/powerset.h" #include "visitor-transfer-function.h" diff --git a/src/analysis/reaching-definitions-transfer-function.h b/src/analysis/reaching-definitions-transfer-function.h index 94e573ea1..dcf04e377 100644 --- a/src/analysis/reaching-definitions-transfer-function.h +++ b/src/analysis/reaching-definitions-transfer-function.h @@ -3,6 +3,8 @@ #include "ir/find_all.h" #include "ir/local-graph.h" +#include "lattice.h" +#include "lattices/powerset.h" #include "visitor-transfer-function.h" namespace wasm::analysis { -- cgit v1.2.3