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 c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
eliminate.c
blob
f254dd811d2a1ebeb287c2d23c7e47aeecaa654e
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
struct
X
5
{
6
int
c
;
7
};
8
9
extern
void
bar
(
struct
X
*);
10
11
void
foo
()
12
{
13
struct
X x
;
14
bar
(&
x
);
15
bar
(&
x
);
16
bar
(&
x
);
17
}
18
19
/* { dg-final { scan-assembler-times "r0,\[\\t \]*sp" 3 } } */