summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/src/kmp_ftn_entry.h
diff options
context:
space:
mode:
authorJonathan Peyton <jonathan.l.peyton@intel.com>2016-06-14 17:57:47 +0000
committerJonathan Peyton <jonathan.l.peyton@intel.com>2016-06-14 17:57:47 +0000
commitdf6818bea4f513a5c7adcd203905163d4052cb1b (patch)
tree1ffd91ed18aefc61971077c9bb125017dbd36347 /openmp/runtime/src/kmp_ftn_entry.h
parent2a86b555e14ffd401bdd4d3bba46b89468cf8018 (diff)
downloadbcm5719-llvm-df6818bea4f513a5c7adcd203905163d4052cb1b.tar.gz
bcm5719-llvm-df6818bea4f513a5c7adcd203905163d4052cb1b.zip
Renaming change: 41 -> 45 and 4.1 -> 4.5
OpenMP 4.1 is now OpenMP 4.5. Any mention of 41 or 4.1 is replaced with 45 or 4.5. Also, if the CMake option LIBOMP_OMP_VERSION is 41, CMake warns that 41 is deprecated and to use 45 instead. llvm-svn: 272687
Diffstat (limited to 'openmp/runtime/src/kmp_ftn_entry.h')
-rw-r--r--openmp/runtime/src/kmp_ftn_entry.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/openmp/runtime/src/kmp_ftn_entry.h b/openmp/runtime/src/kmp_ftn_entry.h
index 97d1c36930a..fe018bf7f42 100644
--- a/openmp/runtime/src/kmp_ftn_entry.h
+++ b/openmp/runtime/src/kmp_ftn_entry.h
@@ -689,7 +689,7 @@ xexpand(FTN_GET_PROC_BIND)( void )
#endif
}
-#if OMP_41_ENABLED
+#if OMP_45_ENABLED
int FTN_STDCALL
FTN_GET_NUM_PLACES( void )
{
@@ -953,7 +953,7 @@ xexpand(FTN_IS_INITIAL_DEVICE)( void )
#endif // OMP_40_ENABLED
-#if OMP_41_ENABLED && defined(KMP_STUB)
+#if OMP_45_ENABLED && defined(KMP_STUB)
// OpenMP 4.5 entries for stubs library
int FTN_STDCALL
@@ -1008,7 +1008,7 @@ FTN_TARGET_DISASSOCIATE_PTR(void *host_ptr, int device_num)
{
return -1;
}
-#endif // OMP_41_ENABLED && defined(KMP_STUB)
+#endif // OMP_45_ENABLED && defined(KMP_STUB)
#ifdef KMP_STUB
typedef enum { UNINIT = -1, UNLOCKED, LOCKED } kmp_stub_lock_t;
@@ -1300,7 +1300,7 @@ FTN_GET_CANCELLATION_STATUS(int cancel_kind) {
#endif // OMP_40_ENABLED
-#if OMP_41_ENABLED
+#if OMP_45_ENABLED
/* returns the maximum allowed task priority */
int FTN_STDCALL
FTN_GET_MAX_TASK_PRIORITY( void )
@@ -1394,8 +1394,8 @@ xaliasify(FTN_GET_CANCELLATION, 40);
xaliasify(FTN_IS_INITIAL_DEVICE, 40);
#endif /* OMP_40_ENABLED */
-#if OMP_41_ENABLED
-// OMP_4.1 aliases
+#if OMP_45_ENABLED
+// OMP_4.5 aliases
#endif
#if OMP_50_ENABLED
@@ -1463,8 +1463,8 @@ xversionify(FTN_GET_CANCELLATION, 40, "OMP_4.0");
xversionify(FTN_IS_INITIAL_DEVICE, 40, "OMP_4.0");
#endif /* OMP_40_ENABLED */
-#if OMP_41_ENABLED
-// OMP_4.1 versioned symbols
+#if OMP_45_ENABLED
+// OMP_4.5 versioned symbols
#endif
#if OMP_50_ENABLED
OpenPOWER on IntegriCloud