aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Churbanov <Andrey.Churbanov@intel.com>2019-07-10 15:09:37 +0000
committerAndrey Churbanov <Andrey.Churbanov@intel.com>2019-07-10 15:09:37 +0000
commit201ba9ed4cda7c2407a525b95eaea115cbc06981 (patch)
treed00cc4741f4ad4c02a620c0e86ebc3c78580f1e9
parent3a22f66a9bd7435d012f259cf434901ae5f2faba (diff)
NFC: fixed typo #ifdef --> #if to allow macro set to 0 work correctly
git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@365642 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--runtime/src/kmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/kmp.h b/runtime/src/kmp.h
index 38a16d1..3db2754 100644
--- a/runtime/src/kmp.h
+++ b/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);