URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [pr35738.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR c/35738 */ /* { dg-do compile } */ /* { dg-options "-fopenmp" } */ void foo (void); void bar (void *p) { int i = 0; char q[10]; #pragma omp atomic i += q; /* { dg-warning "makes integer from pointer without a cast" } */ #pragma omp atomic i += foo; /* { dg-warning "makes integer from pointer without a cast" } */ #pragma omp atomic i += p; /* { dg-warning "makes integer from pointer without a cast" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log