diff options
author | Alon Zakai <azakai@google.com> | 2019-05-01 14:48:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-01 14:48:41 -0700 |
commit | 2bd3758a22131cfd6925b3fd995657b211095c90 (patch) | |
tree | 2a38a48ab68c00ed1b55e885f86014bbdda92ff2 /src/passes/Souperify.cpp | |
parent | 73709b4da08d285c2237c8c23a54ba53274c0c7f (diff) | |
download | binaryen-2bd3758a22131cfd6925b3fd995657b211095c90.tar.gz binaryen-2bd3758a22131cfd6925b3fd995657b211095c90.tar.bz2 binaryen-2bd3758a22131cfd6925b3fd995657b211095c90.zip |
clang-tidy braces changes (#2075)
Applies the changes in #2065, and temprarily disables the hook since it's too slow to run on a change this large. We should re-enable it in a later commit.
Diffstat (limited to 'src/passes/Souperify.cpp')
-rw-r--r-- | src/passes/Souperify.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/passes/Souperify.cpp b/src/passes/Souperify.cpp index 1cc3037fe..6d7176e40 100644 --- a/src/passes/Souperify.cpp +++ b/src/passes/Souperify.cpp @@ -86,8 +86,9 @@ struct UseFinder { LocalGraph& localGraph, std::vector<Expression*>& ret) { // If already handled, nothing to do here. - if (seenSets.count(set)) + if (seenSets.count(set)) { return; + } seenSets.insert(set); // Find all the uses of that set. auto& gets = localGraph.setInfluences[set]; @@ -190,8 +191,9 @@ struct Trace { } // Pull in all the dependencies, starting from the value itself. add(toInfer, 0); - if (bad) + if (bad) { return; + } // If we are trivial before adding pcs, we are still trivial, and // can ignore this. auto sizeBeforePathConditions = nodes.size(); @@ -385,8 +387,9 @@ struct Trace { } } for (auto& node : nodes) { - if (node == toInfer) + if (node == toInfer) { continue; + } if (auto* origin = node->origin) { auto uses = UseFinder().getUses(origin, graph, localGraph); for (auto* use : uses) { @@ -715,8 +718,9 @@ struct Souperify : public WalkerPass<PostWalker<Souperify>> { // Build the data-flow IR. DataFlow::Graph graph; graph.build(func, getModule()); - if (debug() >= 2) + if (debug() >= 2) { dump(graph, std::cout); + } // Build the local graph data structure. LocalGraph localGraph(func); localGraph.computeInfluences(); |