Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/parser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set(parser_SOURCES
context-decls.cpp
context-defs.cpp
lexer.cpp
wast-parser.cpp
wat-parser.cpp
${parser_HEADERS}
)
Expand Down
2 changes: 1 addition & 1 deletion src/parser/contexts.h
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,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}; }

Expand Down
Loading