commit: 75a6c6848aaaba9cd4ebf0840fe9b9e10acddee6 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Nov 3 14:35:36 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Nov 3 14:35:36 2025 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=75a6c684
16.0.0: fix whitespace Signed-off-by: Sam James <sam <AT> gentoo.org> 16.0.0/gentoo/89_all_PR122536-rtx.patch | 36 ++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/16.0.0/gentoo/89_all_PR122536-rtx.patch b/16.0.0/gentoo/89_all_PR122536-rtx.patch index 6004f2f..f07bbc2 100644 --- a/16.0.0/gentoo/89_all_PR122536-rtx.patch +++ b/16.0.0/gentoo/89_all_PR122536-rtx.patch @@ -2,22 +2,22 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122536#c4 --- a/gcc/simplify-rtx.cc +++ b/gcc/simplify-rtx.cc @@ -3686,8 +3686,8 @@ simplify_context::simplify_binary_operation_1 (rtx_code code, - && XEXP (op0, 1) == CONST1_RTX (mode) - && XEXP (op1, 1) == CONST1_RTX (mode) - /* Verify bit positions (for cases with variable bit position). */ -- && CONST_INT_P (XEXP (op0, 1)) -- && CONST_INT_P (XEXP (op1, 1))) -+ && CONST_INT_P (XEXP (XEXP (op0, 0), 1)) -+ && CONST_INT_P (XEXP (XEXP (op1, 0), 1))) - { - unsigned HOST_WIDE_INT bitpos1 = INTVAL (XEXP (XEXP (op0, 0), 1)); - unsigned HOST_WIDE_INT bitpos2 = INTVAL (XEXP (XEXP (op1, 0), 1)); + && XEXP (op0, 1) == CONST1_RTX (mode) + && XEXP (op1, 1) == CONST1_RTX (mode) + /* Verify bit positions (for cases with variable bit position). */ +- && CONST_INT_P (XEXP (op0, 1)) +- && CONST_INT_P (XEXP (op1, 1))) ++ && CONST_INT_P (XEXP (XEXP (op0, 0), 1)) ++ && CONST_INT_P (XEXP (XEXP (op1, 0), 1))) + { + unsigned HOST_WIDE_INT bitpos1 = INTVAL (XEXP (XEXP (op0, 0), 1)); + unsigned HOST_WIDE_INT bitpos2 = INTVAL (XEXP (XEXP (op1, 0), 1)); @@ -3718,7 +3718,7 @@ simplify_context::simplify_binary_operation_1 (rtx_code code, - && XEXP (op0, 1) == CONST1_RTX (mode) - && XEXP (op1, 1) == CONST0_RTX (mode) - /* Verify bit position. */ -- && CONST_INT_P (XEXP (op0, 1))) -+ && CONST_INT_P (XEXP (XEXP (op0, 0), 1))) - { - unsigned HOST_WIDE_INT bitpos1 = INTVAL (XEXP (XEXP (op0, 0), 1)); - unsigned HOST_WIDE_INT mask + && XEXP (op0, 1) == CONST1_RTX (mode) + && XEXP (op1, 1) == CONST0_RTX (mode) + /* Verify bit position. */ +- && CONST_INT_P (XEXP (op0, 1))) ++ && CONST_INT_P (XEXP (XEXP (op0, 0), 1))) + { + unsigned HOST_WIDE_INT bitpos1 = INTVAL (XEXP (XEXP (op0, 0), 1)); + unsigned HOST_WIDE_INT mask
