Merge pull request #195 from hzeller/20221121-fix-msan-issue

Make sure all 32 bits of bit-field are initialized.
This commit is contained in:
alanminko 2023-05-18 22:33:14 -07:00 committed by GitHub
commit cf25d25dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ ABC_NAMESPACE_IMPL_START
typedef struct Kit_Mux_t_ Kit_Mux_t;
struct Kit_Mux_t_
{
unsigned v : 5; // variable
unsigned v : 6; // variable
unsigned t : 12; // then edge
unsigned e : 12; // else edge
unsigned c : 1; // complemented attr of else edge