summaryrefslogtreecommitdiffstats
path: root/diffcore-break.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-03-12 12:22:10 +0100
committerJunio C Hamano <junkio@cox.net>2006-03-12 12:22:10 +0100
commitc06c79667c9514aed00d29bcd80bd0cee7cc5a25 (patch)
tree75549257a77d8d32859a1128f5d01dce31dd5a3b /diffcore-break.c
parentMerge jc/diff leftover bits. (diff)
downloadgit-c06c79667c9514aed00d29bcd80bd0cee7cc5a25.tar.xz
git-c06c79667c9514aed00d29bcd80bd0cee7cc5a25.zip
diffcore-rename: somewhat optimized.
This changes diffcore-rename to reuse statistics information gathered during similarity estimation, and updates the hashtable implementation used to keep track of the statistics to be denser. This seems to give better performance. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diffcore-break.c')
-rw-r--r--diffcore-break.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/diffcore-break.c b/diffcore-break.c
index 71ad58a25a..ed0e14c6d8 100644
--- a/diffcore-break.c
+++ b/diffcore-break.c
@@ -68,6 +68,7 @@ static int should_break(struct diff_filespec *src,
if (diffcore_count_changes(src->data, src->size,
dst->data, dst->size,
+ NULL, NULL,
0,
&src_copied, &literal_added))
return 0;