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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
386.c
blob
81fcea5f0e65689c79d7f8227083d10a546793ff
1
/* { dg-require-effective-target untyped_assembly } */
2
foo
(
a
,
p
)
3
int
*
p
;
4
{
5
p
[
0
] =
a
;
6
a
= (
short
)
a
;
7
return
a
;
8
}
9
10
main
()
11
{
12
int
i
;
13
foobar
(
i
, &
i
);
14
}
15
16
17
foobar
(
a
,
b
)
18
{
19
int
c
;
20
21
c
=
a
%
b
;
22
a
=
a
/
b
;
23
return
a
+
b
;
24
}