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
/
gimplefe-11.c
blob
e1483f4c360c8dab9b9d80e4e04f4f322258138f
1
/* { dg-do compile } */
2
/* { dg-options "-fgimple" } */
3
4
void
__GIMPLE
()
bar
(
int
a
,
int
b
,
int
c
)
5
{
6
a
=
1
;
7
b
=
a
+
1
;
8
c
=
b
*
4
;
9
return
;
10
}
11
12
void
__GIMPLE
()
foo
()
13
{
14
int
a
;
15
int
b
;
16
int
c
;
17
bar
(
a
,
b
,
c
);
18
}