From: H.J. Lu Date: Tue, 14 Jul 2020 21:01:51 +0000 (-0700) Subject: x86: Replace __glibc_unlikely with __builtin_expect X-Git-Tag: basepoints/gcc-12~6159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2984e5ada65f417e8704d2e1e81ccd0272b5eb3;p=thirdparty%2Fgcc.git x86: Replace __glibc_unlikely with __builtin_expect Replace glibc specific __glibc_unlikely with __builtin_expect. PR target/95443 * gcc.target/i386/pr95443-1.c (simple_strstr): Replace __glibc_unlikely with __builtin_expect. --- diff --git a/gcc/testsuite/gcc.target/i386/pr95443-1.c b/gcc/testsuite/gcc.target/i386/pr95443-1.c index 292ff16afddc..698dfa021896 100644 --- a/gcc/testsuite/gcc.target/i386/pr95443-1.c +++ b/gcc/testsuite/gcc.target/i386/pr95443-1.c @@ -49,7 +49,7 @@ simple_strstr (const char *haystack, const char *needle) while (1) { - if (__glibc_unlikely (hs > end)) + if (__builtin_expect (hs > end, 0)) { end += strnlen ((const char*)end + m1 + 1, 2048); if (hs > end)