| 363 | } |
| 364 | |
| 365 | void |
| 366 | Bookkeeper::record_bitfields_writes(const Variable *var) |
| 367 | { |
| 368 | assert(var); |
| 369 | assert(var->type); |
| 370 | const Type *type = var->type; |
| 371 | |
| 372 | if (type->has_bitfields()) |
| 373 | Bookkeeper::lhs_bitfields_structs_vars_cnt++; |
| 374 | if (var->isBitfield_) |
| 375 | Bookkeeper::lhs_bitfield_cnt++; |
| 376 | } |
| 377 | |
| 378 | /* |
| 379 | * record the LHS/RHS types of comparisons between pointers |
nothing calls this directly
no test coverage detected