| 1090 | static struct bit_arrays bit_arrays; |
| 1091 | |
| 1092 | static void insert_no_dup(struct nonstale_queue *queue, struct commit *c) |
| 1093 | { |
| 1094 | if (c->object.flags & PARENT2) |
| 1095 | return; |
| 1096 | nonstale_queue_put(queue, c); |
| 1097 | c->object.flags |= PARENT2; |
| 1098 | } |
| 1099 | |
| 1100 | static struct bitmap *get_bit_array(struct commit *c, int width) |
| 1101 | { |
no test coverage detected