diff options
| author | hansr <hk-git@circlestorm.org> | 2014-10-08 14:14:37 +0200 |
|---|---|---|
| committer | hansr <hk-git@circlestorm.org> | 2014-10-08 14:14:37 +0200 |
| commit | c787ff04c3139fd6cba14a689e3e84b923be96e8 (patch) | |
| tree | 6b903a1b92250089b0d82d79c7199850d572c58c | |
| parent | 5545321e6144c36842e4bdb717000c0098f5698c (diff) | |
| download | Project-Tick-c787ff04c3139fd6cba14a689e3e84b923be96e8.tar.gz Project-Tick-c787ff04c3139fd6cba14a689e3e84b923be96e8.zip | |
Fix merge conflict between commits 5640481 and 5545321
(and clean out some code that is not strictly needed)
| -rw-r--r-- | deflate.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -1330,6 +1330,7 @@ local void fill_window_c(s) */ { int i; + unsigned m; typeof(p) q = p - n; for (i = 0; i < n; i++) { Pos m = *q; @@ -1338,14 +1339,6 @@ local void fill_window_c(s) } } - /* The following three assignments are unnecessary as the variable - * p, n and m are dead at this point. The rationale for these - * statements is to ease the reader to verify the two loops are - * equivalent. - */ - p = p - n; - n = 0; - m = *p; #endif /* NOT_TWEAK_COMPILER */ n = wsize; #ifndef FASTEST @@ -1362,6 +1355,7 @@ local void fill_window_c(s) #else { int i; + unsigned m; typeof(p) q = p - n; for (i = 0; i < n; i++) { Pos m = *q; |
