x86: Replace __glibc_unlikely with __builtin_expect
authorH.J. Lu <hjl.tools@gmail.com>
Tue, 14 Jul 2020 21:01:51 +0000 (14:01 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Tue, 14 Jul 2020 21:04:36 +0000 (14:04 -0700)
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.

gcc/testsuite/gcc.target/i386/pr95443-1.c

index 292ff16..698dfa0 100644 (file)
@@ -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)