Joel E. Denny
9658e77e27
[lit] Fix internal diff newlines for -w/-b
For example, without this patch:
```
$ python $LIT_BUILTINS/diff.py -b foo.txt bar.txt
*** /tmp/foo.txt
--- /tmp/bar.txt
***************
*** 1,2 ****
1! 2--- 1,2 ----
1! 20
```
With this patch:
```
$ python $LIT_BUILTINS/diff.py -b foo.txt bar.txt
*** /tmp/foo.txt
--- /tmp/bar.txt
***************
*** 1,2 ****
1
! 2
--- 1,2 ----
1
! 20
```
Reviewed By: rnk
Differential Revision: https://reviews.llvm.org/D71577
2019-12-17 10:49:34 -05:00
..
2019-08-19 22:59:37 +00:00
2019-07-08 12:18:40 +00:00
2019-02-26 19:03:26 +00:00
2019-02-15 02:44:52 +00:00
2019-11-05 14:09:21 -05:00
2019-12-17 10:36:36 +00:00
2019-11-05 14:09:21 -05:00
2019-05-01 15:47:16 +00:00
2019-12-17 10:49:34 -05:00
2019-01-20 00:51:02 +00:00
2019-10-15 20:57:20 +00:00
2019-11-14 11:24:41 -08:00