Don't use regparm with bounded pointers.
authorAndreas Jaeger <aj@suse.de>
Thu, 29 Jun 2000 17:13:34 +0000 (17:13 +0000)
committerAndreas Jaeger <aj@suse.de>
Thu, 29 Jun 2000 17:13:34 +0000 (17:13 +0000)
2000-06-23  Andreas Jaeger  <aj@suse.de>

* config.h.in: Don't use regparm with bounded pointers.

ChangeLog
config.h.in

index 01e9fea..17f2831 100644 (file)
--- 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
index 20ac625..b28aa47 100644 (file)
@@ -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