| 1004 | } |
| 1005 | |
| 1006 | void line_log_queue_pairs(struct rev_info *rev, struct commit *commit) |
| 1007 | { |
| 1008 | struct line_log_data *range = lookup_line_range(rev, commit); |
| 1009 | struct line_log_data *r; |
| 1010 | |
| 1011 | for (r = range; r; r = r->next) { |
| 1012 | if (r->pair) { |
| 1013 | struct diff_filepair *p = diff_filepair_dup(r->pair); |
| 1014 | p->line_ranges = &r->ranges; |
| 1015 | diff_q(&diff_queued_diff, p); |
| 1016 | } |
| 1017 | } |
| 1018 | } |
| 1019 | |
| 1020 | static int bloom_filter_check(struct rev_info *rev, |
| 1021 | struct commit *commit, |
no test coverage detected