* where.c (ffewhere_track): Remove impossible if-then clause.

From-SVN: r56469
This commit is contained in:
Kaveh R. Ghazi 2002-08-20 20:50:57 +00:00 committed by Kaveh Ghazi
parent 48209ce53a
commit fe93253580
2 changed files with 9 additions and 16 deletions

View file

@ -1,3 +1,7 @@
Tue Aug 20 16:49:40 2002 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* where.c (ffewhere_track): Remove impossible if-then clause.
Thu Aug 8 10:06:14 2002 Nathan Sidwell <nathan@codesourcery.com>
* f/Make-lang.in (f.mostlyclean): Remove coverage files.

View file

@ -436,22 +436,11 @@ ffewhere_track (ffewhereLine *wl, ffewhereColumn *wc, ffewhereTrack wt,
else
{
wt[i * 2 - 2] = lo;
if (cn > FFEWHERE_indexUNKNOWN)
{
wt[i * 2 - 1] = FFEWHERE_indexUNKNOWN;
ffewhere_line_kill (*wl);
ffewhere_column_kill (*wc);
*wl = ffewhere_line_unknown ();
*wc = ffewhere_column_unknown ();
}
else
{
wt[i * 2 - 1] = cn - 1;
ffewhere_line_kill (*wl);
ffewhere_column_kill (*wc);
*wl = ffewhere_line_use (ffewhere_line_new (ln));
*wc = ffewhere_column_use (ffewhere_column_new (cn));
}
wt[i * 2 - 1] = cn - 1;
ffewhere_line_kill (*wl);
ffewhere_column_kill (*wc);
*wl = ffewhere_line_use (ffewhere_line_new (ln));
*wc = ffewhere_column_use (ffewhere_column_new (cn));
}
}