From 30dbfcd86c364da8491634ed4f99def184e2d042 Mon Sep 17 00:00:00 2001 From: Roger Sayle Date: Wed, 12 Jul 2023 14:43:37 +0100 Subject: [PATCH] i386: Fix FAIL of gcc.target/i386/pr91681-1.c I committed the wrong version of this patch (with a typo). Updating to the correct bootstrapped and regression tested version as obvious. 2023-07-12 Roger Sayle gcc/ChangeLog PR target/91681 * config/i386/i386.md (*add3_doubleword_concat_zext): Typo. --- gcc/config/i386/i386.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index de274c825295..89a7fb0de260 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -6305,7 +6305,7 @@ (zero_extend: (match_operand:DWIH 4 "nonimmediate_operand" "rm"))) (zero_extend: - (match_operand:DWIH 1 "nonimmediate_operand" "rm"))) + (match_operand:DWIH 1 "nonimmediate_operand" "rm")))) (clobber (reg:CC FLAGS_REG))] "INTVAL (operands[3]) == * BITS_PER_UNIT" "#" -- 2.47.2