From c695d6dc0e28fac489ef09a9d231d35f12de62ef Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 2 Aug 2023 15:52:18 -0700 Subject: [NFC] Move ModuleUtils copying and renaming logic from header to cpp (#5855) None of that code is speed-sensitive, or at least doesn't need to be inlined to be fast. Move it to cpp for faster compile times. This caused a cascade of necessary header fixes (i.e. after removing unneeded header inclusions in module-utils.h, files that improperly depended on that stopped working and needed an added include). --- src/ir/lubs.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ir/lubs.cpp') diff --git a/src/ir/lubs.cpp b/src/ir/lubs.cpp index 1f844c244..f9c04cb36 100644 --- a/src/ir/lubs.cpp +++ b/src/ir/lubs.cpp @@ -15,6 +15,7 @@ */ #include "ir/lubs.h" +#include "ir/find_all.h" #include "ir/utils.h" #include "wasm-type.h" #include "wasm.h" -- cgit v1.2.3