Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Churkin committed Aug 10, 2024
1 parent 993cfeb commit e58e703
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/ast/symbols/MemberSymbols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,8 @@ PrimitiveSymbol& PrimitiveSymbol::fromSyntax(const Scope& scope,
SmallVector<TableEntry> table;
for (auto entry : syntax.body->entries) {
createTableRow(scope, *entry, table, ports.size(), trie, trieAlloc);
prim->isEdgeSensitive |= table.back().isEdgeSensitive;
if (!table.empty())
prim->isEdgeSensitive |= table.back().isEdgeSensitive;
}

prim->table = table.copy(comp);
Expand Down

0 comments on commit e58e703

Please sign in to comment.