diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-01-07 13:24:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 13:24:58 -0800 |
commit | 7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch) | |
tree | d8bba13d306b0c5ecba384384e602e6cccc83015 /src/dataflow | |
parent | 6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff) | |
download | binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2 binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip |
Massive renaming (#1855)
Automated renaming according to
https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'src/dataflow')
-rw-r--r-- | src/dataflow/graph.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dataflow/graph.h b/src/dataflow/graph.h index 9a30b7576..85b37b7b0 100644 --- a/src/dataflow/graph.h +++ b/src/dataflow/graph.h @@ -40,7 +40,7 @@ namespace DataFlow { // contains the DataFlow IR for that expression, which can be a // Bad node if not supported, or nullptr if not relevant (we only // use the return value for internal expressions, that is, the -// value of a set_local or the condition of an if etc). +// value of a local.set or the condition of an if etc). struct Graph : public UnifiedExpressionVisitor<Graph, Node*> { // We only need one canonical bad node. It is never modified. Node bad = Node(Node::Type::Bad); @@ -699,7 +699,7 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> { return node; } - // Given a node representing something that is set_local'd, return + // Given a node representing something that is local.set'd, return // the set. SetLocal* getSet(Node* node) { auto iter = nodeParentMap.find(node); @@ -721,7 +721,7 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> { } // Creates an expression that uses a node. Generally, a node represents - // a value in a local, so we create a get_local for it. + // a value in a local, so we create a local.get for it. Expression* makeUse(Node* node) { Builder builder(*module); if (node->isPhi()) { |