Remove a compiler warning. (Matthias Pfaller, PR2104)

This commit is contained in:
phil 1996-02-28 21:18:05 +00:00
parent 077a490a9f
commit 7b5994752e

View File

@ -132,10 +132,11 @@ static void
make_invalid_floating_point_number (words)
LITTLENUM_TYPE * words;
{
words[0]= ((unsigned)-1)>>1; /* Zero the leftmost bit */
words[1]= -1;
words[2]= -1;
words[3]= -1;
/* Zero the leftmost bit */
words[0]= (LITTLENUM_TYPE) ((unsigned)-1)>>1;
words[1]= (LITTLENUM_TYPE) -1;
words[2]= (LITTLENUM_TYPE) -1;
words[3]= (LITTLENUM_TYPE) -1;
}
/***********************************************************************\