summaryrefslogtreecommitdiff
path: root/src/dataflow/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dataflow/graph.h')
-rw-r--r--src/dataflow/graph.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dataflow/graph.h b/src/dataflow/graph.h
index 02679995b..6a984ad72 100644
--- a/src/dataflow/graph.h
+++ b/src/dataflow/graph.h
@@ -157,7 +157,9 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> {
return ret;
}
- Node* makeZero(wasm::Type type) { return makeConst(Literal::makeZero(type)); }
+ Node* makeZero(wasm::Type type) {
+ return makeConst(Literal::makeSingleZero(type));
+ }
// Add a new node to our list of owned nodes.
Node* addNode(Node* node) {