[committed] Fix mcore-elf regression after recent IRA change
[official-gcc.git] / gcc / testsuite / gcc.dg / and-1.c
blobbec56fd8492d331c21d6a539f06109e77c7a63d9
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler "and" { target powerpc*-*-* } } } */
4 /* There should be no nand for this testcase (for PPC). */
5 /* { dg-final { scan-assembler-not "nand" { target powerpc*-*-* } } } */
7 int f(int y)
9 return y & ~(y & -y);