diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-05-26 17:32:53 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-05-26 17:32:53 +0000 |
commit | 99016999703149a91127bc811d81a356441b9bfd (patch) | |
tree | df1777135854d05a67767f1cda46a24d9f89481c /openmp/runtime/src/kmp_ftn_cdecl.c | |
parent | 5b30b0aaaeeb2a5bf67f2883eb3cd3787be44756 (diff) | |
download | bcm5719-llvm-99016999703149a91127bc811d81a356441b9bfd.tar.gz bcm5719-llvm-99016999703149a91127bc811d81a356441b9bfd.zip |
Change macro GUIDEDLL_EXPORTS to KMP_DYNAMIC_LIB
A while back, Hal suggested updating the GUIDEDLL_EXPORTS macro guard to
a more descriptive name. It represents a dynamic library build so
KMP_DYNAMIC_LIB is a more suitable name.
Differential Revision: http://reviews.llvm.org/D9899
llvm-svn: 238221
Diffstat (limited to 'openmp/runtime/src/kmp_ftn_cdecl.c')
-rw-r--r-- | openmp/runtime/src/kmp_ftn_cdecl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/src/kmp_ftn_cdecl.c b/openmp/runtime/src/kmp_ftn_cdecl.c index b8f00685830..51fa1bf8954 100644 --- a/openmp/runtime/src/kmp_ftn_cdecl.c +++ b/openmp/runtime/src/kmp_ftn_cdecl.c @@ -16,7 +16,7 @@ #include "kmp.h" #if KMP_OS_WINDOWS -# if defined KMP_WIN_CDECL || !defined GUIDEDLL_EXPORTS +# if defined KMP_WIN_CDECL || !defined KMP_DYNAMIC_LIB # define KMP_FTN_ENTRIES KMP_FTN_UPPER # endif #elif KMP_OS_UNIX |