Allow gcc 5.x to compile library.

Change check of __GNUC__ macro from:
__GNUC__ == 4 to __GNUC__ >= 4


git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@238347 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jonathan Peyton
2015-05-27 18:57:33 +00:00
parent 29ed987b04
commit bbb8bf893d
+1 -1
View File
@@ -365,7 +365,7 @@ typedef double kmp_real64;
#define KMP_EXPORT extern /* export declaration in guide libraries */
#if __GNUC__ == 4
#if __GNUC__ >= 4
#define __forceinline __inline
#endif