diff options
author | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2019-07-10 15:09:37 +0000 |
---|---|---|
committer | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2019-07-10 15:09:37 +0000 |
commit | 28f44040cc432e45b1bf85574e8f46b472fb667c (patch) | |
tree | 2f705abcc6f4f685c16eebb7ba7de67e40de77f3 | |
parent | 1c51073a3ad8dd4ec4f6a2c962c89cab9ca220e0 (diff) | |
download | bcm5719-llvm-28f44040cc432e45b1bf85574e8f46b472fb667c.tar.gz bcm5719-llvm-28f44040cc432e45b1bf85574e8f46b472fb667c.zip |
NFC: fixed typo #ifdef --> #if to allow macro set to 0 work correctly
llvm-svn: 365642
-rw-r--r-- | openmp/runtime/src/kmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/src/kmp.h b/openmp/runtime/src/kmp.h index 38a16d1dc84..3db27542d9d 100644 --- a/openmp/runtime/src/kmp.h +++ b/openmp/runtime/src/kmp.h @@ -3663,7 +3663,7 @@ extern void __kmp_init_implicit_task(ident_t *loc_ref, kmp_info_t *this_thr, extern void __kmp_finish_implicit_task(kmp_info_t *this_thr); extern void __kmp_free_implicit_task(kmp_info_t *this_thr); -#ifdef OMP_50_ENABLED +#if OMP_50_ENABLED extern kmp_event_t *__kmpc_task_allow_completion_event(ident_t *loc_ref, int gtid, kmp_task_t *task); |