diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 1ee8ed3..d55cbdd 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -421,6 +421,9 @@ struct GTY(()) function { /* Set if this is a coroutine-related function. */ unsigned int coroutine_component : 1; + + /* Set if there are any OMP_TARGET regions in the function. */ + unsigned int has_omp_target : 1; }; /* Add the decl D to the local_decls list of FUN. */ |