(simplify_plus_minus): Correct sign error in expanding NOT.

From-SVN: r3732
This commit is contained in:
Richard Kenner 1993-03-14 06:32:20 -05:00
parent 8bb44f9ab5
commit 5931019b79
1 changed files with 1 additions and 1 deletions

View File

@ -3975,7 +3975,7 @@ simplify_plus_minus (code, mode, op0, op1)
if (n_ops != 7)
{
ops[n_ops] = constm1_rtx;
negs[n_ops++] = ! negs[i];
negs[n_ops++] = negs[i];
ops[i] = XEXP (ops[i], 0);
negs[i] = ! negs[i];
changed = 1;