diff options
author | Alon Zakai <azakai@google.com> | 2019-04-26 16:59:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-26 16:59:41 -0700 |
commit | db9124f1de0478dcac525009b6f1589b44a7edd8 (patch) | |
tree | fa26395a0f6cca53cf5cb6e10189f989c5bfa847 /src/passes/Strip.cpp | |
parent | 87636dccd404a340d75acb1d96301581343f29ca (diff) | |
download | binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.tar.gz binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.tar.bz2 binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.zip |
Apply format changes from #2048 (#2059)
Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048
Diffstat (limited to 'src/passes/Strip.cpp')
-rw-r--r-- | src/passes/Strip.cpp | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/src/passes/Strip.cpp b/src/passes/Strip.cpp index edc171ab3..e85379003 100644 --- a/src/passes/Strip.cpp +++ b/src/passes/Strip.cpp @@ -21,9 +21,9 @@ #include <functional> -#include "wasm.h" -#include "wasm-binary.h" #include "pass.h" +#include "wasm-binary.h" +#include "wasm.h" using namespace std; @@ -31,7 +31,7 @@ namespace wasm { struct Strip : public Pass { // A function that returns true if the method should be removed. - typedef std::function<bool (UserSection&)> Decider; + typedef std::function<bool(UserSection&)> Decider; Decider decider; Strip(Decider decider) : decider(decider) {} @@ -39,14 +39,8 @@ struct Strip : public Pass { void run(PassRunner* runner, Module* module) override { // Remove name and debug sections. auto& sections = module->userSections; - sections.erase( - std::remove_if( - sections.begin(), - sections.end(), - decider - ), - sections.end() - ); + sections.erase(std::remove_if(sections.begin(), sections.end(), decider), + sections.end()); // If we're cleaning up debug info, clear on the function and module too. UserSection temp; temp.name = BinaryConsts::UserSections::Name; @@ -60,16 +54,15 @@ struct Strip : public Pass { } }; -Pass *createStripDebugPass() { +Pass* createStripDebugPass() { return new Strip([&](const UserSection& curr) { return curr.name == BinaryConsts::UserSections::Name || curr.name == BinaryConsts::UserSections::SourceMapUrl || - curr.name.find(".debug") == 0 || - curr.name.find("reloc..debug") == 0; + curr.name.find(".debug") == 0 || curr.name.find("reloc..debug") == 0; }); } -Pass *createStripProducersPass() { +Pass* createStripProducersPass() { return new Strip([&](const UserSection& curr) { return curr.name == BinaryConsts::UserSections::Producers; }); |