]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 24 May 1999 16:21:12 +0000 (16:21 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 24 May 1999 16:21:12 +0000 (16:21 +0000)
1999-05-24  Ulrich Drepper  <drepper@cygnus.com>

* ctype/ctype.h: Don't optimize toupper/tolower for C++.

ChangeLog
ctype/ctype.h

index 537ebc26e3217712861f12b6ee8764cb66eefe92..d2bfea03af21fb191aebea1262aad4e1ff638b70 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-05-24  Ulrich Drepper  <drepper@cygnus.com>
+
+       * ctype/ctype.h: Don't optimize toupper/tolower for C++.
+
 1999-05-23  Roland McGrath  <roland@baalperazim.frob.com>
 
        * hurd/set-host.c (_hurd_set_host_config): Use mode 0644, not 0600.
index fd4f9e8ca9bc5718632469a71e686700d1163d82..11f92068d453d6073403f97e21c5656b0d5d495d 100644 (file)
@@ -163,7 +163,7 @@ toupper (int __c) __THROW
 }
 #endif
 
-#if __GNUC__ >= 2 && defined __OPTIMIZE__
+#if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
 # define __tobody(c, f, a) \
   ({ int __res;                                                                      \
      if (sizeof (c) > 1)                                                     \
This page took 0.048025 seconds and 5 git commands to generate.