Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr100576.c
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
();
}