| 3724 | } |
| 3725 | |
| 3726 | static inline void test_flag_and_insert(struct prio_queue *q, struct commit *c, int flag) |
| 3727 | { |
| 3728 | if (c->object.flags & flag) |
| 3729 | return; |
| 3730 | |
| 3731 | c->object.flags |= flag; |
| 3732 | prio_queue_put(q, c); |
| 3733 | } |
| 3734 | |
| 3735 | static void explore_walk_step(struct rev_info *revs) |
| 3736 | { |
no test coverage detected