3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-26 00:52:35 +00:00

Merge branch 'YosysHQ:main' into main

This commit is contained in:
Akash Levy 2025-06-02 18:47:14 +02:00 committed by GitHub
commit e3a6b920d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 79 additions and 29 deletions

View file

@ -1433,6 +1433,7 @@ bool AstNode::simplify(bool const_fold, int stage, int width_hint, bool sign_hin
current_ast_mod->children.push_back(wnode);
}
basic_prep = true;
is_custom_type = false;
}
break;

View file

@ -1855,7 +1855,7 @@ struct_decl:
}
;
struct_type: struct_union { astbuf2 = $1; } struct_body { $$ = astbuf2; }
struct_type: struct_union { astbuf2 = $1; astbuf2->is_custom_type = true; } struct_body { $$ = astbuf2; }
;
struct_union: