aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr103798-7.c
blob: 40fd38257d107d72f9d68868bf5d900be05104ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do run { target int128 } } */
/* { dg-options "-O2 -fdump-tree-optimized -save-temps" } */

__attribute__ ((weak))
int f(char a)
{
   return  __builtin_memchr ("aEgiHjZ", a, 7) == 0;
}

__attribute__ ((weak))
int g(char a)
{
  return (a != 'a' && a != 'E' && a != 'g' && a != 'i' && a != 'H'
	  && a != 'j' && a != 'Z');
}

int
main ()
{
 for (int i = 0; i < 255; i++)
   if (f (i) != g (i))
     __builtin_abort ();

 return 0;
}

/* { dg-final { scan-assembler-not "memchr" } } */