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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [pointer-arith-1.c] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* Test diagnostics for arithmetic on void and function pointers.
2
   Test with no special options.  */
3
/* Origin: Joseph Myers <joseph@codesourcery.com> */
4
/* { dg-do compile } */
5
/* { dg-options "" } */
6
 
7
void *p;
8
void (*f)(void);
9
 
10
void
11
g (void)
12
{
13
  p + 0;
14
  p + 1;
15
 
16
  1 + p;
17
  p - 0;
18
  p - 1;
19
  p += 0;
20
  p += 1;
21
  p -= 0;
22
  p -= 1;
23
  f + 0;
24
  f + 1;
25
 
26
  1 + f;
27
  f - 0;
28
  f - 1;
29
  f += 0;
30
  f += 1;
31
  f -= 0;
32
  f -= 1;
33
  p[0]; /* { dg-warning "dereferencing 'void \\*' pointer" } */
34
  0[p]; /* { dg-warning "dereferencing 'void \\*' pointer" } */
35
  f[0]; /* { dg-error "subscripted value is pointer to function" } */
36
  0[f]; /* { dg-error "subscripted value is pointer to function" } */
37
  p - p;
38
  f - f;
39
}

powered by: WebSVN 2.1.0

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