From c35849163319ee606a28eb4d8bfd585b1f4eddcf Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 21 Sep 2025 21:51:37 -0400 Subject: Support bitfields in type system Also adds support for parsing bitfields in PDB, DWARF and SVD plugins WIP: API needs to be considered more, also need to find type related apis that may need to be rethought. --- rust/tests/types.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rust/tests') diff --git a/rust/tests/types.rs b/rust/tests/types.rs index 17682777..962df630 100644 --- a/rust/tests/types.rs +++ b/rust/tests/types.rs @@ -52,6 +52,8 @@ fn test_structure_builder() { offset: 0, access: MemberAccess::PrivateAccess, scope: MemberScope::FriendScope, + bit_position: None, + bit_width: None, } ); } -- cgit v1.3.1