summaryrefslogtreecommitdiff
path: root/src/parser/contexts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/contexts.h')
-rw-r--r--src/parser/contexts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/contexts.h b/src/parser/contexts.h
index 8f0c6cdff..3e42d0d6b 100644
--- a/src/parser/contexts.h
+++ b/src/parser/contexts.h
@@ -1696,7 +1696,7 @@ struct ParseDefsCtx : TypeParserCtx<ParseDefsCtx> {
return Builder::addVar(func, name, type);
}
- Result<Expression*> makeExpr() { return irBuilder.build(); }
+ Result<Expression*> makeExpr() { return withLoc(irBuilder.build()); }
Memarg getMemarg(uint64_t offset, uint32_t align) { return {offset, align}; }