summaryrefslogtreecommitdiff
path: root/src/passes/LimitSegments.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2019-04-26 16:59:41 -0700
committerGitHub <noreply@github.com>2019-04-26 16:59:41 -0700
commitdb9124f1de0478dcac525009b6f1589b44a7edd8 (patch)
treefa26395a0f6cca53cf5cb6e10189f989c5bfa847 /src/passes/LimitSegments.cpp
parent87636dccd404a340d75acb1d96301581343f29ca (diff)
downloadbinaryen-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/LimitSegments.cpp')
-rw-r--r--src/passes/LimitSegments.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/passes/LimitSegments.cpp b/src/passes/LimitSegments.cpp
index 521969a28..0ea70f53d 100644
--- a/src/passes/LimitSegments.cpp
+++ b/src/passes/LimitSegments.cpp
@@ -26,14 +26,11 @@ struct LimitSegments : public Pass {
void run(PassRunner* runner, Module* module) override {
if (!MemoryUtils::ensureLimitedSegments(*module)) {
std::cerr << "Unable to merge segments. "
- << "wasm VMs may not accept this binary"
- << std::endl;
+ << "wasm VMs may not accept this binary" << std::endl;
}
}
};
-Pass *createLimitSegmentsPass() {
- return new LimitSegments();
-}
+Pass* createLimitSegmentsPass() { return new LimitSegments(); }
} // namespace wasm