summaryrefslogtreecommitdiff
path: root/src/dataflow
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2022-07-29 07:25:43 +0300
committerGitHub <noreply@github.com>2022-07-29 04:25:43 +0000
commit078f7b9bf57426cca2db96edbf213765354fc57a (patch)
tree11aac0d5014ce7230d9c522ce1be6d3807154ae1 /src/dataflow
parentd02c260619e5d068b6893d4948de0487d0f1f66d (diff)
downloadbinaryen-078f7b9bf57426cca2db96edbf213765354fc57a.tar.gz
binaryen-078f7b9bf57426cca2db96edbf213765354fc57a.tar.bz2
binaryen-078f7b9bf57426cca2db96edbf213765354fc57a.zip
Refactor doIndent (#4847)
Refactor everywhere from: ```c++ for (size_t i = 0; i < indent; i++) { o << ' '; } ``` to: ```c++ o << std::string(indent, ' '); ``` ### Motivation It is much simpler and should produce smaller code.See godbolt: https://godbolt.org/z/KMYMdn7z5
Diffstat (limited to 'src/dataflow')
-rw-r--r--src/dataflow/utils.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/dataflow/utils.h b/src/dataflow/utils.h
index af59c4111..4e88ed1f9 100644
--- a/src/dataflow/utils.h
+++ b/src/dataflow/utils.h
@@ -32,11 +32,7 @@
namespace wasm::DataFlow {
inline std::ostream& dump(Node* node, std::ostream& o, size_t indent = 0) {
- auto doIndent = [&]() {
- for (size_t i = 0; i < indent; i++) {
- o << ' ';
- }
- };
+ auto doIndent = [&]() { o << std::string(indent, ' '); };
doIndent();
o << '[' << node << ' ';
switch (node->type) {