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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ipa
/
ipa-sra-5.c
blob
8a7568119b1907d72f02b7ab28f3369e11529ab5
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fipa-sra -fdump-ipa-sra" } */
3
4
static int
*
5
__attribute__
((
noinline
,
used
))
6
ox
(
int
*
i
,
int
*
j
)
7
{
8
return
i
;
9
}
10
11
int
a
;
12
13
int
*
caller
(
void
)
14
{
15
int
b
=
10
;
16
17
return
ox
(&
a
, &
b
);
18
}
19
/* { dg-final { scan-ipa-dump-times "Will split parameter" 0 "sra" } } */