summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/vax/ctzqi.c
blob: 067334b09e218ab7ed9283811a1a5704339ebb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-fdump-rtl-peephole2" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-O0" "-O1" } { "" } } */

typedef unsigned int __attribute__ ((mode (QI))) int_t;

int
ctzqi (int_t *x)
{
  return __builtin_ctz (*x);
}

/* Expect assembly like:

	ffs $0,$8,*4(%ap),%r0

 */

/* { dg-final { scan-rtl-dump-times "Splitting with gen_peephole2" 1 "peephole2" } } */
/* { dg-final { scan-assembler "\tffs \\\$0,\\\$8," } } */