aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/bitfields9.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix issue with bit fields of type _BoolXavier Leroy2015-07-081-7/+7
| | | | | | cparser/Bitfields.ml: when assigning to a bit field of type _Bool, the right-hand side must be normalized to 0 or 1 via a cast to _Bool. test/regression/bitfields{1,9}.c: add corresponding test cases.
* Extended inline asm: handle missing cases.Xavier Leroy2015-04-281-0/+49
Bitfields: better translation of initializers and compound literals; run this pass before unblocking. Transform.stmt: extend with ability to treat unblocked code. test/regression: more bitfield tests.