summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-04-23 17:44:49 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-04-23 17:44:49 +0000
commitabb9ce3a6566d088e07cc2883508f10fb265dc6b (patch)
treeea1d3fb8672e1563e5a017c1fe879dc8c8983684
parent41d41bfc3acb3173807c2882abba0f5fec034d55 (diff)
downloadATCD-abb9ce3a6566d088e07cc2883508f10fb265dc6b.tar.gz
ChangeLogTag:Mon Apr 23 10:43:23 2001 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--PACE/ChangeLog8
-rw-r--r--PACE/pace/config/compiler.h6
2 files changed, 9 insertions, 5 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index 92156dda5d7..8c472f39beb 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,3 +1,11 @@
+Mon Apr 23 10:43:23 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * pace/config/compiler.h:
+ Reverted on of Cristian's changes. He agrees that it is not
+ worthwhile to use the C9X 'inline' feature when only a few
+ versions of gcc support it, while inlining static functions with
+ -O3 is supported by all versions.
+
Mon Apr 23 09:45:13 2001 Carlos O'Ryan <coryan@uci.edu>
* pace/win32/pthread.c (pthread_getschedparam):
diff --git a/PACE/pace/config/compiler.h b/PACE/pace/config/compiler.h
index 6928db40a93..92e25c97a05 100644
--- a/PACE/pace/config/compiler.h
+++ b/PACE/pace/config/compiler.h
@@ -28,11 +28,7 @@
* static. Otherwise, we want PACE_INLINE to be defined as nothing.
*/
# if defined (PACE_HAS_INLINE)
-# if defined (__GNUC__)
-# define PACE_INLINE static inline
-# else
-# define PACE_INLINE static
-# endif
+# define PACE_INLINE static
# else
# define PACE_INLINE
# endif /* ! PACE_HAS_INLINE */