]> granicus.if.org Git - clang/commit
Add a very primitive clang based multifile 'delta'.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 24 Feb 2009 07:42:32 +0000 (07:42 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 24 Feb 2009 07:42:32 +0000 (07:42 +0000)
commitae66cf3153f7285d3ff4430af79c380881b2eb32
tree1fc6a43896bdc166f67e30114e7ac3ae21cd2298
parent6eba1438ae905ca2a863dc32480712c8a6411aa3
Add a very primitive clang based multifile 'delta'.
 - Interface is more or less like multidelta.

 - Keep in mind it won't work very well; delta is O(N^2) frequently in
   practice. multidelta manages to work because it folds lines to keep
   N small, but this is just working on raw tokens. However, I have a
   fancy pants DAG based delta algorithm which will be the bees knees
   once I get it wired to clang.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65377 91177308-0d34-0410-b5e6-96231b3b80d8
utils/token-delta.py [new file with mode: 0755]