diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-15 00:51:53 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-15 00:51:53 +0000 |
commit | 2bdd4ca6b6c38367e301042c2247395568c63ebd (patch) | |
tree | 8fb33d2cfb3fc67852327483322747eceefb91ae /sysdeps/x86 | |
parent | dd395cf1103ec8e26affcf501791505ded4d31c6 (diff) | |
download | glibc-2bdd4ca6b6c38367e301042c2247395568c63ebd.tar.gz glibc-2bdd4ca6b6c38367e301042c2247395568c63ebd.tar.xz glibc-2bdd4ca6b6c38367e301042c2247395568c63ebd.zip |
Remove miscellaneous bounded-pointers relics in C code.
Diffstat (limited to 'sysdeps/x86')
-rw-r--r-- | sysdeps/x86/bits/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86/bits/string.h b/sysdeps/x86/bits/string.h index 41d204199c..24b64ec94d 100644 --- a/sysdeps/x86/bits/string.h +++ b/sysdeps/x86/bits/string.h @@ -36,7 +36,7 @@ /* We only provide optimizations if the user selects them and if GNU CC is used. */ # if !defined __NO_STRING_INLINES && defined __USE_STRING_INLINES \ - && defined __GNUC__ && __GNUC__ >= 2 && !__BOUNDED_POINTERS__ + && defined __GNUC__ && __GNUC__ >= 2 # ifndef __STRING_INLINE # ifndef __extern_inline |