| 350 | } |
| 351 | |
| 352 | void |
| 353 | Bookkeeper::record_bitfields_reads(const Variable *var) |
| 354 | { |
| 355 | assert(var); |
| 356 | assert(var->type); |
| 357 | const Type *type = var->type; |
| 358 | |
| 359 | if (type->has_bitfields()) |
| 360 | Bookkeeper::rhs_bitfields_structs_vars_cnt++; |
| 361 | if (var->isBitfield_) |
| 362 | Bookkeeper::rhs_bitfield_cnt++; |
| 363 | } |
| 364 | |
| 365 | void |
| 366 | Bookkeeper::record_bitfields_writes(const Variable *var) |
nothing calls this directly
no test coverage detected