]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arm: fix checking ICE in arm_print_operand [PR106004]
authorRichard Earnshaw <rearnsha@arm.com>
Fri, 17 Jun 2022 13:25:51 +0000 (14:25 +0100)
committerRichard Earnshaw <rearnsha@arm.com>
Fri, 17 Jun 2022 13:27:01 +0000 (14:27 +0100)
Sigh, another instance where I incorrectly used XUINT instead of
UINTVAL.

I've also made the code here a little more robust (although I think
this case can't in fact be reached) if the 32-bit clear mask includes
bit 31.  This case, if reached, would print out an out-of-range value
based on the size of the compiler's HOST_WIDE_INT type due to
sign-extension.  We avoid this by masking the value after inversion.

gcc/ChangeLog:
PR target/106004
* config/arm/arm.cc (arm_print_operand, case 'V'): Use UINTVAL.
Clear bits in the mask above bit 31.

gcc/config/arm/arm.cc

index 2925907b4367822078c3e772b84e9ebe7b7dd685..33fb98d5cad600c885de0a79c900856845d42260 100644 (file)
@@ -24199,7 +24199,8 @@ arm_print_operand (FILE *stream, rtx x, int code)
            return;
          }
 
-       unsigned HOST_WIDE_INT val = ~XUINT (x, 0);
+       unsigned HOST_WIDE_INT val
+         = ~UINTVAL (x) & HOST_WIDE_INT_UC (0xffffffff);
        int lsb = exact_log2 (val & -val);
        asm_fprintf (stream, "#%d, #%d", lsb,
                     (exact_log2 (val + (val & -val)) - lsb));