]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arm: testuite: Missing optimization pattern for rev16 with thumb1
authorMatthieu Longo <matthieu.longo@arm.com>
Thu, 8 Feb 2024 18:13:49 +0000 (18:13 +0000)
committerRichard Earnshaw <rearnsha@arm.com>
Thu, 15 Feb 2024 14:21:44 +0000 (14:21 +0000)
This patch marks a rev16 test as XFAIL for architectures having only
Thumb1 support.  The generated code is functionally correct, but the
optimization is disabled when -mthumb is equivalent to Thumb1.  Fixing
the root issue would requires changes that are not suitable for GCC14
stage 4.  More information at
https://linaro.atlassian.net/browse/GNU-1141

gcc/testsuite/ChangeLog:

* gcc.target/arm/rev16_2.c: XFAIL when compiled with Thumb1.

gcc/testsuite/gcc.target/arm/rev16_2.c

index c6553b38a0001eb1ed8ad277d8f06b3a3a09f88d..dff66e10bb93df8f32d7fa6426ac115fc84ad523 100644 (file)
@@ -17,4 +17,4 @@ __rev16_32 (__u32 x)
          | (((__u32)(x) & (__u32)0xff00ff00UL) >> 8);
 }
 
-/* { dg-final { scan-assembler-times {rev16\tr[0-9]+, r[0-9]+} 2 } } */
+/* { dg-final { scan-assembler-times {rev16\tr[0-9]+, r[0-9]+} 2 { xfail arm_thumb1_ok } } } */
\ No newline at end of file