diff options
author | Thomas Lively <tlively@google.com> | 2024-09-06 17:57:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-07 00:57:18 +0000 |
commit | 7e117284029bfbfc2b638caa53335e1b2c53490e (patch) | |
tree | d4d8d3ef4b7ec2f26982295546b6509fa65d30d9 /src/ir | |
parent | 2d70ee0d1d2620a676bdf82779187cf0ee5bd0cf (diff) | |
download | binaryen-7e117284029bfbfc2b638caa53335e1b2c53490e.tar.gz binaryen-7e117284029bfbfc2b638caa53335e1b2c53490e.tar.bz2 binaryen-7e117284029bfbfc2b638caa53335e1b2c53490e.zip |
[NFC] Rename topological_orders.h to topological_sort.h (#6915)
Now that the header includes topological sort utilities in addition to
the utility that iterates over all topological orders, it makes more
sense for it to be named topological_sort.h
Diffstat (limited to 'src/ir')
-rw-r--r-- | src/ir/module-utils.cpp | 2 |
1 files changed, 1 insertions, 1 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 { |