1 /* PR optimization/6703
2 Origin: Glen Nakamura <glen@imodulo.com> */
4 /* { dg-options "-O2" } */
6 extern void abort (void);
7 extern void exit (int);
9 void foo (int *x
, int y
)
11 __builtin_memset (x
, 0, y
);
16 int x
[2] = { -1, -1 };
20 foo (x
, sizeof (int) + 1);