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/TupleOptimization.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/TupleOptimization.cpp')
-rw-r--r-- | src/passes/TupleOptimization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/TupleOptimization.cpp b/src/passes/TupleOptimization.cpp index ca704f1a3..c4fd51b16 100644 --- a/src/passes/TupleOptimization.cpp +++ b/src/passes/TupleOptimization.cpp @@ -102,7 +102,7 @@ struct TupleOptimization : public WalkerPass<PostWalker<TupleOptimization>> { copiedIndexes.resize(numLocals); // Walk the code to collect info. - super::doWalkFunction(func); + Super::doWalkFunction(func); // Analyze and optimize. optimize(func); |