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
Revert DECL_USER_ALIGN part of r241959
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83463.c
blob
735ef3c6dc8f62bf43f05e999fe1d539721ed7ea
1
/* PR middle-end/83463 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -Wrestrict" } */
4
5
int
*
a
;
6
void
*
memcpy
();
7
void
8
m
(
void
*
p1
)
9
{
10
memcpy
(
0
,
p1
,
0
);
11
}
12
13
void
14
p
()
15
{
16
m
(
p
+ (
long
)
a
);
17
}