diff options
author | Alon Zakai <azakai@google.com> | 2024-09-10 09:55:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 09:55:13 -0700 |
commit | 9d3f8e5603c42fdb2517d15d865f5cee06d21db5 (patch) | |
tree | 20c4b09215e92fc363a1e5e5273628c91bca52b4 /src/passes/Table64Lowering.cpp | |
parent | 203dcd5c47d6ea784e613f647f8addd9815a3d5b (diff) | |
download | binaryen-9d3f8e5603c42fdb2517d15d865f5cee06d21db5.tar.gz binaryen-9d3f8e5603c42fdb2517d15d865f5cee06d21db5.tar.bz2 binaryen-9d3f8e5603c42fdb2517d15d865f5cee06d21db5.zip |
[NFC] Standardize Super:: over super:: (#6920)
As the name of a class, uppercase seems better here.
Diffstat (limited to 'src/passes/Table64Lowering.cpp')
-rw-r--r-- | src/passes/Table64Lowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Table64Lowering.cpp b/src/passes/Table64Lowering.cpp index 71fc6a6fe..b4a538df9 100644 --- a/src/passes/Table64Lowering.cpp +++ b/src/passes/Table64Lowering.cpp @@ -138,7 +138,7 @@ struct Table64Lowering : public WalkerPass<PostWalker<Table64Lowering>> { } void run(Module* module) override { - super::run(module); + Super::run(module); // Don't modify the tables themselves until after the traversal since we // that would require tables to be the last thing that get visited, and // we don't want to depend on that specific ordering. |