OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pointer-arith-4.c] - Rev 816

Compare with Previous | Blame | View Log

/* Test diagnostics for arithmetic on void and function pointers.
   Test with -pedantic-errors.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-pedantic-errors" } */
 
void *p;
void (*f)(void);
 
void
g (void)
{
  p + 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p + 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  0 + p; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  1 + p; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p - 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p - 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p += 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p += 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p -= 0; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  p -= 1; /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" } */
  f + 0; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f + 1; /* { dg-error "error: pointer to a function used in arithmetic" } */
  0 + f; /* { dg-error "error: pointer to a function used in arithmetic" } */
  1 + f; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f - 0; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f - 1; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f += 0; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f += 1; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f -= 0; /* { dg-error "error: pointer to a function used in arithmetic" } */
  f -= 1; /* { dg-error "error: pointer to a function used in arithmetic" } */
  p[0]; /* { dg-warning "warning: dereferencing 'void \\*' pointer" } */
  /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" "array 1" { target *-*-* } 33 } */
  0[p]; /* { dg-warning "warning: dereferencing 'void \\*' pointer" } */
  /* { dg-error "error: pointer of type 'void \\*' used in arithmetic" "array 1" { target *-*-* } 35 } */
  f[0]; /* { dg-error "error: subscripted value is pointer to function" } */
  0[f]; /* { dg-error "error: subscripted value is pointer to function" } */
  p - p; /* { dg-error "error: pointer of type 'void \\*' used in subtraction" } */
  f - f; /* { dg-error "error: pointer to a function used in subtraction" } */
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.