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
[NDS32] Add intrinsic functions for TLB operation and data prefech.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gimplefe-10.c
blob
7f63c587c0357a1bef028d373536a1e00e5efda2
1
/* { dg-do compile } */
2
/* { dg-options "-fgimple" } */
3
4
int
__GIMPLE
()
bar
(
int
a
,
int
b
,
int
c
)
5
{
6
a
=
1
;
7
b
=
a
+
1
;
8
c
=
b
*
4
;
9
return
b
;
10
}
11
12
void
__GIMPLE
()
foo
()
13
{
14
int
a
;
15
int
b
;
16
int
c
;
17
b
=
bar
(
a
,
b
,
c
);
18
}