summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ir/module-utils.cpp2
-rw-r--r--src/passes/MinimizeRecGroups.cpp2
-rw-r--r--src/passes/ReorderGlobals.cpp2
-rw-r--r--src/support/topological_sort.h (renamed from src/support/topological_orders.h)6
-rw-r--r--test/gtest/CMakeLists.txt2
-rw-r--r--test/gtest/topological-sort.cpp (renamed from test/gtest/topological-orders.cpp)2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/ir/module-utils.cpp b/src/ir/module-utils.cpp
index 3c81d6679..58f7d4637 100644
--- a/src/ir/module-utils.cpp
+++ b/src/ir/module-utils.cpp
@@ -20,7 +20,7 @@
#include "ir/manipulation.h"
#include "ir/properties.h"
#include "support/insert_ordered.h"
-#include "support/topological_orders.h"
+#include "support/topological_sort.h"
namespace wasm::ModuleUtils {
diff --git a/src/passes/MinimizeRecGroups.cpp b/src/passes/MinimizeRecGroups.cpp
index 8b38f9e4a..e89d98442 100644
--- a/src/passes/MinimizeRecGroups.cpp
+++ b/src/passes/MinimizeRecGroups.cpp
@@ -75,7 +75,7 @@
#include "pass.h"
#include "support/disjoint_sets.h"
#include "support/strongly_connected_components.h"
-#include "support/topological_orders.h"
+#include "support/topological_sort.h"
#include "wasm-type-shape.h"
#include "wasm.h"
diff --git a/src/passes/ReorderGlobals.cpp b/src/passes/ReorderGlobals.cpp
index af0b9572a..f95f56726 100644
--- a/src/passes/ReorderGlobals.cpp
+++ b/src/passes/ReorderGlobals.cpp
@@ -35,7 +35,7 @@
#include "ir/find_all.h"
#include "pass.h"
-#include "support/topological_orders.h"
+#include "support/topological_sort.h"
#include "wasm.h"
namespace wasm {
diff --git a/src/support/topological_orders.h b/src/support/topological_sort.h
index bc6609ae0..b75f6b78d 100644
--- a/src/support/topological_orders.h
+++ b/src/support/topological_sort.h
@@ -14,8 +14,8 @@
* limitations under the License.
*/
-#ifndef wasm_support_topological_orders_h
-#define wasm_support_topological_orders_h
+#ifndef wasm_support_topological_sort_h
+#define wasm_support_topological_sort_h
#include <algorithm>
#include <cassert>
@@ -300,4 +300,4 @@ template<typename Cmp> std::vector<Index> minSort(const Graph& graph, Cmp cmp) {
} // namespace wasm
-#endif // wasm_support_topological_orders_h
+#endif // wasm_support_topological_sort_h
diff --git a/test/gtest/CMakeLists.txt b/test/gtest/CMakeLists.txt
index 17e880a4e..7ef72db13 100644
--- a/test/gtest/CMakeLists.txt
+++ b/test/gtest/CMakeLists.txt
@@ -13,7 +13,7 @@ set(unittest_SOURCES
scc.cpp
stringify.cpp
suffix_tree.cpp
- topological-orders.cpp
+ topological-sort.cpp
type-builder.cpp
wat-lexer.cpp
validator.cpp
diff --git a/test/gtest/topological-orders.cpp b/test/gtest/topological-sort.cpp
index 67c56cbdb..6a04a71ff 100644
--- a/test/gtest/topological-orders.cpp
+++ b/test/gtest/topological-sort.cpp
@@ -18,7 +18,7 @@
#include <optional>
#include <vector>
-#include "support/topological_orders.h"
+#include "support/topological_sort.h"
#include "gtest/gtest.h"
using namespace wasm;