summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/compiler.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-09-07 18:42:07 +0100
committerJosé Fonseca <jfonseca@vmware.com>2011-09-08 09:17:42 +0100
commit1cf808c86e7e88b173a5ca0ec6fef562ecae16b3 (patch)
tree35bfc4f852896d6865863d67a98f3a9c1567baa6 /src/mesa/main/compiler.h
parent7645c49e07b638de94f03d5f71fde397066a46ee (diff)
downloadexternal_mesa3d-1cf808c86e7e88b173a5ca0ec6fef562ecae16b3.zip
external_mesa3d-1cf808c86e7e88b173a5ca0ec6fef562ecae16b3.tar.gz
external_mesa3d-1cf808c86e7e88b173a5ca0ec6fef562ecae16b3.tar.bz2
Define INLINE macro in terms of inline.
Diffstat (limited to 'src/mesa/main/compiler.h')
-rw-r--r--src/mesa/main/compiler.h31
1 files changed, 16 insertions, 15 deletions
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 8ed1c6f..89d6cda9 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -114,29 +114,30 @@ extern "C" {
/**
* Function inlining
*/
-#ifndef INLINE
-# if defined(__GNUC__)
-# define INLINE __inline__
-# elif defined(__MSC__)
-# define INLINE __inline
+#ifndef inline
+# ifdef __cplusplus
+ /* C++ supports inline keyword */
+# elif defined(__GNUC__)
+# define inline __inline__
# elif defined(_MSC_VER)
-# define INLINE __inline
+# define inline __inline
# elif defined(__ICL)
-# define INLINE __inline
+# define inline __inline
# elif defined(__INTEL_COMPILER)
-# define INLINE inline
+ /* Intel compiler supports inline keyword */
# elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
-# define INLINE __inline
+# define inline __inline
# elif defined(__SUNPRO_C) && defined(__C99FEATURES__)
-# define INLINE inline
-# define __inline inline
-# define __inline__ inline
-# elif (__STDC_VERSION__ >= 199901L) /* C99 */
-# define INLINE inline
+ /* C99 supports inline keyword */
+# elif (__STDC_VERSION__ >= 199901L)
+ /* C99 supports inline keyword */
# else
-# define INLINE
+# define inline
# endif
#endif
+#ifndef INLINE
+# define INLINE inline
+#endif
/**