diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pointer-arith-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pointer-arith-2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/pointer-arith-2.c b/gcc/testsuite/gcc.dg/pointer-arith-2.c index 8e95ab5..fde01e1 100644 --- a/gcc/testsuite/gcc.dg/pointer-arith-2.c +++ b/gcc/testsuite/gcc.dg/pointer-arith-2.c @@ -34,8 +34,8 @@ g (void) /* { dg-warning "warning: pointer of type 'void \\*' used in arithmetic" "array 1" { target *-*-* } 33 } */ 0[p]; /* { dg-warning "warning: dereferencing 'void \\*' pointer" } */ /* { dg-warning "warning: pointer of type 'void \\*' used in arithmetic" "array 1" { target *-*-* } 35 } */ - f[0]; /* { dg-error "error: subscripted value is neither array nor pointer" } */ - 0[f]; /* { dg-error "error: subscripted value is neither array nor pointer" } */ + 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-warning "warning: pointer of type 'void \\*' used in subtraction" } */ f - f; /* { dg-warning "warning: pointer to a function used in subtraction" } */ } |