1 /* Test whether strncmp has not been "optimized" into memcmp
2 nor any code with memcmp semantics. */
3 /* { dg-do run { target i?86-*-linux* x86_64-*-linux* ia64-*-linux* alpha*-*-linux* powerpc*-*-linux* s390*-*-linux* sparc*-*-linux* } } */
4 /* { dg-options "-O2" } */
8 void __attribute__((noinline
)) test (const char *p
)
10 if (__builtin_strncmp (p
, "abcdefghijklmnopq", 17) == 0)
16 char *p
= mmap (NULL
, 131072, PROT_READ
| PROT_WRITE
,
17 MAP_PRIVATE
| MAP_ANONYMOUS
, -1, 0);
20 if (munmap (p
+ 65536, 65536) < 0)
22 __builtin_memcpy (p
+ 65536 - 5, "abcd", 5);