You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The generated code is as if a.x and a.y were regular fields instead of bitfields.
struct A { int x: 3; int y: 5; } a;
struct A test(int val, int choice, struct A a)
{
(choice ? a.x : a.y) = val;
return a;
}
Affects D and ImportC.