summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-14 18:15:37 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-14 18:15:37 +0000
commit9fd84530e1f7743ac970d438dca3d4c868c51790 (patch)
treeb3af2f72eff5500f34a3a0a7f36f5e47fcedf8bd
parentf097734a94f6995f057bfbadf4912ffb23bb9830 (diff)
downloadppe42-gcc-9fd84530e1f7743ac970d438dca3d4c868c51790.tar.gz
ppe42-gcc-9fd84530e1f7743ac970d438dca3d4c868c51790.zip
2010-01-14 Paolo Carlini <paolo.carlini@oracle.com>
* include/c_std/cstring (memchr): Forward to the builtin. * include/c_std/cstring: Remove redundant casts; use names consistent with the letter of the Standard. * include/c_global/cstring: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155912 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libstdc++-v3/ChangeLog7
-rw-r--r--libstdc++-v3/include/c_global/cstring18
-rw-r--r--libstdc++-v3/include/c_std/cstring19
3 files changed, 26 insertions, 18 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index bd347e1ac1d..dbc49a43125 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,10 @@
+2010-01-14 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * include/c_std/cstring (memchr): Forward to the builtin.
+ * include/c_std/cstring: Remove redundant casts; use names consistent
+ with the letter of the Standard.
+ * include/c_global/cstring: Likewise.
+
2010-01-13 Benjamin Kosnik <bkoz@redhat.com>
* include/profile/iterator_tracker.h: Add copyright.
diff --git a/libstdc++-v3/include/c_global/cstring b/libstdc++-v3/include/c_global/cstring
index acd6166b15f..dba96c98127 100644
--- a/libstdc++-v3/include/c_global/cstring
+++ b/libstdc++-v3/include/c_global/cstring
@@ -1,7 +1,7 @@
// -*- C++ -*- forwarding header.
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-// 2006, 2007, 2008, 2009
+// 2006, 2007, 2008, 2009, 2010
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@@ -98,24 +98,24 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
#ifndef __CORRECT_ISO_CPP_STRING_H_PROTO
inline void*
- memchr(void* __p, int __c, size_t __n)
- { return memchr(const_cast<const void*>(__p), __c, __n); }
+ memchr(void* __s, int __c, size_t __n)
+ { return __builtin_memchr(__s, __c, __n); }
inline char*
- strchr(char* __s1, int __n)
- { return __builtin_strchr(const_cast<const char*>(__s1), __n); }
+ strchr(char* __s, int __n)
+ { return __builtin_strchr(__s, __n); }
inline char*
strpbrk(char* __s1, const char* __s2)
- { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); }
+ { return __builtin_strpbrk(__s1, __s2); }
inline char*
- strrchr(char* __s1, int __n)
- { return __builtin_strrchr(const_cast<const char*>(__s1), __n); }
+ strrchr(char* __s, int __n)
+ { return __builtin_strrchr(__s, __n); }
inline char*
strstr(char* __s1, const char* __s2)
- { return __builtin_strstr(const_cast<const char*>(__s1), __s2); }
+ { return __builtin_strstr(__s1, __s2); }
#endif
_GLIBCXX_END_NAMESPACE
diff --git a/libstdc++-v3/include/c_std/cstring b/libstdc++-v3/include/c_std/cstring
index 63afe8c6a08..3535a249b3b 100644
--- a/libstdc++-v3/include/c_std/cstring
+++ b/libstdc++-v3/include/c_std/cstring
@@ -1,6 +1,7 @@
// -*- C++ -*- forwarding header.
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2009
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+// 2006, 2007, 2008, 2009, 2010
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@@ -97,24 +98,24 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
#ifndef __CORRECT_ISO_CPP_STRING_H_PROTO
inline void*
- memchr(void* __p, int __c, size_t __n)
- { return memchr(const_cast<const void*>(__p), __c, __n); }
+ memchr(void* __s, int __c, size_t __n)
+ { return __builtin_memchr(__s, __c, __n); }
inline char*
- strchr(char* __s1, int __n)
- { return __builtin_strchr(const_cast<const char*>(__s1), __n); }
+ strchr(char* __s, int __n)
+ { return __builtin_strchr(__s, __n); }
inline char*
strpbrk(char* __s1, const char* __s2)
- { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); }
+ { return __builtin_strpbrk(__s1, __s2); }
inline char*
- strrchr(char* __s1, int __n)
- { return __builtin_strrchr(const_cast<const char*>(__s1), __n); }
+ strrchr(char* __s, int __n)
+ { return __builtin_strrchr(__s, __n); }
inline char*
strstr(char* __s1, const char* __s2)
- { return __builtin_strstr(const_cast<const char*>(__s1), __s2); }
+ { return __builtin_strstr(__s1, __s2); }
#endif
_GLIBCXX_END_NAMESPACE
OpenPOWER on IntegriCloud