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
S/390: Allow immediates in loc expander
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr57980.c
blob
be83536c5f712fbe083029f4d0a7a69c5f7cd08e
1
/* PR tree-optimization/57980 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -foptimize-sibling-calls -w" } */
4
5
typedef
int
V
__attribute__
((
vector_size
(
2
*
sizeof
(
int
))));
6
extern
V
f
(
void
);
7
8
V
9
bar
(
void
)
10
{
11
return
-
f
();
12
}
13
14
V
15
foo
(
void
)
16
{
17
V v
= { };
18
return
v
-
f
();
19
}