view gcc/testsuite/c-c++-common/pr58346-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR c/58346 */
/* { dg-do compile } */
/* { dg-options "-Wno-c++-compat" { target c } } */

struct U {
#ifdef __cplusplus
  char a[0];
#endif
};
static struct U b[6];
static struct U *u1, *u2;

int
foo (struct U *p, struct U *q)
{
  return q - p; /* { dg-error "arithmetic on pointer to an empty aggregate" } */
}

void
bar (void)
{
  __PTRDIFF_TYPE__ d = u1 - u2; /* { dg-error "arithmetic on pointer to an empty aggregate" } */
  __asm volatile ("" : "+g" (d));
  foo (&b[0], &b[4]);
}