| 132 | static const char *alternate_index_output; |
| 133 | |
| 134 | static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce) |
| 135 | { |
| 136 | if (S_ISSPARSEDIR(ce->ce_mode)) |
| 137 | istate->sparse_index = INDEX_COLLAPSED; |
| 138 | |
| 139 | istate->cache[nr] = ce; |
| 140 | add_name_hash(istate, ce); |
| 141 | } |
| 142 | |
| 143 | static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce) |
| 144 | { |
no test coverage detected