Allow gcc 5.x to compile library.
authorJonathan Peyton <jonathan.l.peyton@intel.com>
Wed, 27 May 2015 18:57:33 +0000 (18:57 +0000)
committerJonathan Peyton <jonathan.l.peyton@intel.com>
Wed, 27 May 2015 18:57:33 +0000 (18:57 +0000)
Change check of __GNUC__ macro from:
__GNUC__ == 4 to __GNUC__ >= 4

llvm-svn: 238347

openmp/runtime/src/kmp_os.h

index d8a9226..076f943 100644 (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