repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
memset-2.c
blob
fb4debc6d2ce7c4d559fe17b2131044ba0bbef0b
1
/* PR target/63937 */
2
/* { dg-do compile { target lp64 } } */
3
/* { dg-options "-O2" } */
4
5
void
6
foo
(
char
*
p
)
7
{
8
p
=
__builtin_assume_aligned
(
p
,
64
);
9
__builtin_memset
(
p
,
0
,
0x100000001
ULL
);
10
}
11