diff options
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r-- | gcc/omp-low.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c index c1dc919..7cf51b3 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -142,7 +142,7 @@ struct omp_region /* Context structure. Used to store information about each parallel directive in the code. */ -typedef struct omp_context +struct omp_context { /* This field must be at the beginning, as we do "inheritance": Some callback functions for tree-inline.c (e.g., omp_copy_decl) @@ -204,7 +204,7 @@ typedef struct omp_context this level and above. For parallel and kernels clauses, a mask indicating which of num_gangs/num_workers/num_vectors was used. */ int gwv_this; -} omp_context; +}; /* A structure holding the elements of: for (V = N1; V cond N2; V += STEP) [...] */ |