aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr114293.c
blob: eb49ede0657dde34e9d04aa6c5687fcee32d9c24 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR tree-optimization/114293 */
/* { dg-do compile } */
/* { dg-options "-O2 -w" } */

int
foo (int x)
{
  __builtin_memset (&x, 5, -1);
  return __builtin_strlen ((char *) &x);
}