Commit 9f0b8c7b by Segher Boessenkool Committed by Segher Boessenkool

Fix typo in simplify_binary_operation_1


	* simplify-rtx.c (simplify_binary_operation_1): Fix typo in comment.

From-SVN: r252979
parent c4b06e7f
2017-09-17 Segher Boessenkool <segher@kernel.crashing.org>
* simplify-rtx.c (simplify_binary_operation_1): Fix typo in comment.
2017-09-18 Martin Sebor <msebor@redhat.com>
PR c/81854
......
......@@ -2665,7 +2665,7 @@ simplify_binary_operation_1 (enum rtx_code code, machine_mode mode,
HOST_WIDE_INT c1 = INTVAL (XEXP (op0, 1));
HOST_WIDE_INT c2 = INTVAL (trueop1);
/* If (C1&C2) == C1, then (X&C1)|C2 becomes X. */
/* If (C1&C2) == C1, then (X&C1)|C2 becomes C2. */
if ((c1 & c2) == c1
&& !side_effects_p (XEXP (op0, 0)))
return trueop1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment