summaryrefslogtreecommitdiff
path: root/gcc/omp-low.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r--gcc/omp-low.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c
index b31a9ac0f62..51b471cff5a 100644
--- a/gcc/omp-low.c
+++ b/gcc/omp-low.c
@@ -141,7 +141,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)
@@ -190,7 +190,7 @@ typedef struct omp_context
/* True if this construct can be cancelled. */
bool cancellable;
-} omp_context;
+};
/* A structure holding the elements of:
for (V = N1; V cond N2; V += STEP) [...] */