* combine.c (apply_distributive_law): Correct comment.

From-SVN: r70734
This commit is contained in:
Roger Sayle 2003-08-23 14:46:22 +00:00 committed by Roger Sayle
parent a653d067f7
commit a0209ac28f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-08-23 Roger Sayle <roger@eyesopen.com>
* combine.c (apply_distributive_law): Correct comment.
2003-08-23 Jason Eckhardt <jle@rice.edu>
* config/i860/i860.h: Remove comment mentioning LIBGCC_NEEDS_DOUBLE.

View File

@ -7955,7 +7955,7 @@ apply_distributive_law (rtx x)
tem = gen_binary (code, GET_MODE (x), lhs, rhs);
/* There is one exception to the general way of distributing:
(a ^ b) | (a ^ c) -> (~a) & (b ^ c) */
(a | c) ^ (b | c) -> (a ^ b) & ~c */
if (code == XOR && inner_code == IOR)
{
inner_code = AND;