aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/memchr-2.c
blob: 61357f96d12f177e86b3b4af66439ff4a5432120 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* PR tree-optimization/96670 - ICE on memchr with an empty initializer
   { dg-do compile }
   { dg-options "-O -Wall -fdump-tree-optimized" } */

struct {
  int i, j;
} const s = { };

void memchr_success_unused (void)
{
  int n = (char *)&s.j - (char *)&s;
  char *p = (char *)&s;
  __builtin_memchr (p, '\0', n);
}

void memchr_success_used (void)
{
  int n = (char *)&s.j - (char *)&s;
  char *p = (char *)&s;
  if (&s != __builtin_memchr (p, '\0', n))
    __builtin_abort ();
}

void memchr_fail_unused (void)
{
  int n = (char *)&s.j - (char *)&s;
  char *p = (char *)&s;
  __builtin_memchr (p, '\5', n);
}

void memchr_fail_used (void)
{
  int n = (char *)&s.j - (char *)&s;
  char *p = (char *)&s;
  if (__builtin_memchr (p, '\5', n))
    __builtin_abort ();
}

/* { dg-prune-output "\\\[-Wunused-value" }
   { dg-final { scan-tree-dump-not "abort" "optimized" } }
   { dg-final { scan-tree-dump-not "memcmp \\(" "optimized" } } */