On Apr 23, 2012, at 6:42 AM, erik quanstrom <quans...@quanstro.net> wrote: > crazy idea i haven't tried. > > why not use X in sam or acme to mass-edit fu:bar -> fu[bar] and just make > fu an array.
? How will that work for something like struct X {int a:5, :8, c:12,:7; float d;} x; Usually you can convert bitfields ops to operations under masked -- what the compiler has to do. So reading x.c becomes ((x.i>>7)&0xfff) etc. Where x.i represents the same word where a &c are stored. I thought that (except for pcc) bitfields code gen & performance issues got fixed a long time ago?