diff options
author | Thomas Lively <tlively@google.com> | 2023-10-20 21:16:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-20 21:16:27 +0200 |
commit | ce6fe670bee398b8e258120f16b4aa7f942e418c (patch) | |
tree | 6f63f33b0fd493478d68903b2cb5126462ccbc3e /test/gtest | |
parent | 1c910bf047c058c4c97f65293ff539b4caf9ee87 (diff) | |
download | binaryen-ce6fe670bee398b8e258120f16b4aa7f942e418c.tar.gz binaryen-ce6fe670bee398b8e258120f16b4aa7f942e418c.tar.bz2 binaryen-ce6fe670bee398b8e258120f16b4aa7f942e418c.zip |
[analysis][NFC] Move the stack lattice to analysis/lattices (#6030)
Also shorten various names in the implementation to improve readability.
Diffstat (limited to 'test/gtest')
-rw-r--r-- | test/gtest/cfg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gtest/cfg.cpp b/test/gtest/cfg.cpp index 6873f63fa..3bb3ec104 100644 --- a/test/gtest/cfg.cpp +++ b/test/gtest/cfg.cpp @@ -2,10 +2,10 @@ #include "analysis/cfg.h" #include "analysis/lattice.h" +#include "analysis/lattices/stack.h" #include "analysis/liveness-transfer-function.h" #include "analysis/monotone-analyzer.h" #include "analysis/reaching-definitions-transfer-function.h" -#include "analysis/stack-lattice.h" #include "ir/find_all.h" #include "print-test.h" #include "wasm.h" |