OSDN Git Service

* reload.c (find_reloads): Don't clear badop if we have a
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / gomp / pr34694.c
1 /* PR middle-end/34694 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fopenmp -Wall" } */
4
5 int i;
6
7 void
8 foo ()
9 {
10 #pragma omp parallel
11   {
12     int j;      /* { dg-message "note: 'j' was declared here" } */
13     i = j;      /* { dg-warning "is used uninitialized" } */
14   }
15 }