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
PR target/55146
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr48159-1.c
blob
cd67e63852f3283d04b653dcc2e0f44f84d31101
1
/* PR debug/48159 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -fcompare-debug" } */
4
5
void
6
foo
(
double
x
,
int
y
,
double
*
__restrict z
,
double
*
__restrict w
)
7
{
8
while
(
y
--)
9
*
z
++ = (*
w
++ =
0
) *
x
;
10
}