blob: f2f40ec451207513f8fd9198f1ed0318a8464e37 [file] [log] [blame]
/* PR middle-end/100576 */
const char v[] = {0x12};
void
foo (const char *p)
{
int b = sizeof v;
int n = memcmp (p, v, b);
if (n)
__builtin_abort ();
}