diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-14 06:32:20 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-14 06:32:20 -0500 |
commit | 5931019b79cac956f09601b80f941ad5989f4c75 (patch) | |
tree | d48f7da4d29117ce4b53814fd0a51b8c530dfa76 /gcc | |
parent | 8bb44f9ab526223600a8cf5c8f5fee0020f5289d (diff) | |
download | gcc-5931019b79cac956f09601b80f941ad5989f4c75.zip gcc-5931019b79cac956f09601b80f941ad5989f4c75.tar.gz gcc-5931019b79cac956f09601b80f941ad5989f4c75.tar.bz2 |
(simplify_plus_minus): Correct sign error in expanding NOT.
From-SVN: r3732
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |