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
tree: Don't reuse types if TYPE_USER_ALIGN differ [PR94775]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
noeffect5.C
blob
f0f4e74109af353be8d70f7f3a33414a17ddfaf0
1
/* PR middle-end/13325 */
2
/* { dg-do compile } */
3
/* { dg-options "-Wall" } */
4
5
void *memcpy(void *dest, const void *src, __SIZE_TYPE__ n);
6
void f (void *dest, const void *src) {
7
memcpy (dest, src, 0);
8
}