summaryrefslogtreecommitdiff
path: root/src/dataflow
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2018-12-13 17:40:27 -0800
committerGitHub <noreply@github.com>2018-12-13 17:40:27 -0800
commit3325a9cc203932e58b6e85dfefe5feb6e72839a4 (patch)
tree1d969ab30854fd773fdc615d799c9a9ed7e9c0be /src/dataflow
parent0fd96e6b07f0a0907737c0f44e55060e057c2bb9 (diff)
downloadbinaryen-3325a9cc203932e58b6e85dfefe5feb6e72839a4.tar.gz
binaryen-3325a9cc203932e58b6e85dfefe5feb6e72839a4.tar.bz2
binaryen-3325a9cc203932e58b6e85dfefe5feb6e72839a4.zip
SIMD (#1820)
Implement and test the following functionality for SIMD. - Parsing and printing - Assembling and disassembling - Interpretation - C API - JS API
Diffstat (limited to 'src/dataflow')
-rw-r--r--src/dataflow/graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dataflow/graph.h b/src/dataflow/graph.h
index 7f5654f8d..9a30b7576 100644
--- a/src/dataflow/graph.h
+++ b/src/dataflow/graph.h
@@ -153,7 +153,7 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> {
}
Node* makeZero(wasm::Type type) {
- return makeConst(LiteralUtils::makeLiteralZero(type));
+ return makeConst(Literal::makeZero(type));
}
// Add a new node to our list of owned nodes.