clang/'Dead store': remove dead code

This commit is contained in:
Jan Edmund Lazo
2019-12-25 06:36:48 -05:00
parent c740e3b4b5
commit 35c3985da6
4 changed files with 4 additions and 17 deletions

View File

@@ -4513,7 +4513,7 @@ static void qf_get_nth_below_entry(qfline_T *entry,
linenr_T n)
{
while (n-- > 0 && !got_int) {
qfline_T *first_entry = entry;
// qfline_T *first_entry = entry;
int first_errornr = *errornr;
// Treat all the entries on the same line in this file as one
@@ -4523,7 +4523,7 @@ static void qf_get_nth_below_entry(qfline_T *entry,
|| entry->qf_next->qf_fnum != entry->qf_fnum) {
// If multiple entries are on the same line, then use the first
// entry
entry = first_entry;
// entry = first_entry;
*errornr = first_errornr;
break;
}