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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
restrict-4.c
blob
5806a2a90184e8638c699e3d19b8c6b6c9c83574
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-lim2-details" } */
3
4
struct
Foo
5
{
6
int
n
;
7
int
*
__restrict__ p
;
8
};
9
void
bar
(
struct
Foo f
,
int
*
__restrict__ q
)
10
{
11
int
i
;
12
for
(
i
=
0
;
i
<
f
.
n
; ++
i
)
13
{
14
*
q
+=
f
.
p
[
i
];
15
}
16
}
17
18
/* { dg-final { scan-tree-dump "Executing store motion" "lim2" } } */