about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-06-29 17:13:34 +0000
committerAndreas Jaeger <aj@suse.de>2000-06-29 17:13:34 +0000
commit6fc1dd3f32bb27970af6c5ce74ba9b25de4bf824 (patch)
tree4b73242696d1590f1cc412ca60b2633f222f9da2
parent5ca8accdcd234f3479a9b686b3519768be9af69b (diff)
downloadglibc-6fc1dd3f32bb27970af6c5ce74ba9b25de4bf824.tar.gz
glibc-6fc1dd3f32bb27970af6c5ce74ba9b25de4bf824.tar.xz
glibc-6fc1dd3f32bb27970af6c5ce74ba9b25de4bf824.zip
Don't use regparm with bounded pointers.
2000-06-23  Andreas Jaeger  <aj@suse.de>

	* config.h.in: Don't use regparm with bounded pointers.
-rw-r--r--ChangeLog4
-rw-r--r--config.h.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 01e9fea1b5..17f2831f14 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-06-23  Andreas Jaeger  <aj@suse.de>
+
+	* config.h.in: Don't use regparm with bounded pointers.
+
 2000-06-29  Ulrich Drepper  <drepper@redhat.com>
 
 	* stdlib/grouping.h: Correctly handle multibyte thousands
diff --git a/config.h.in b/config.h.in
index 20ac62532f..b28aa47548 100644
--- a/config.h.in
+++ b/config.h.in
@@ -76,7 +76,7 @@
 
 /* Defined to some form of __attribute__ ((...)) if the compiler supports
    a different, more efficient calling convention.  */
-#if defined USE_REGPARMS && !defined PROF
+#if defined USE_REGPARMS && !defined PROF && !defined __BOUNDED_POINTERS__
 # define internal_function __attribute__ ((regparm (3), stdcall))
 #endif