diff options
author | Thomas Lively <tlively@google.com> | 2024-09-06 17:24:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 17:24:52 -0700 |
commit | 2d70ee0d1d2620a676bdf82779187cf0ee5bd0cf (patch) | |
tree | 91d9ee3e0c043bc9c7a3b76b4fd10b08fc226d7d /src/tools | |
parent | 4d58e2770b121e319025196c0cc2622864c47098 (diff) | |
download | binaryen-2d70ee0d1d2620a676bdf82779187cf0ee5bd0cf.tar.gz binaryen-2d70ee0d1d2620a676bdf82779187cf0ee5bd0cf.tar.bz2 binaryen-2d70ee0d1d2620a676bdf82779187cf0ee5bd0cf.zip |
[NFC] Rename the old topological sort utility (#6914)
This will allow both the old and new topological sort utilities to be
included into the same .cpp file while we phase out the old utility.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/wasm-ctor-eval.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index 9cf552450..6809fa32a 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -36,9 +36,9 @@ #include "support/colors.h" #include "support/file.h" #include "support/insert_ordered.h" +#include "support/old_topological_sort.h" #include "support/small_set.h" #include "support/string.h" -#include "support/topological_sort.h" #include "tool-options.h" #include "wasm-builder.h" #include "wasm-interpreter.h" @@ -678,7 +678,7 @@ private: if (!mustBeAfter.empty()) { // We found constraints that require reordering, so do so. - struct MustBeAfterSort : TopologicalSort<Name, MustBeAfterSort> { + struct MustBeAfterSort : OldTopologicalSort<Name, MustBeAfterSort> { MustBeAfter& mustBeAfter; MustBeAfterSort(MustBeAfter& mustBeAfter) : mustBeAfter(mustBeAfter) { |