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
* gcc.c-torture/execute/20101011-1.c: Skip on SH.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20051215-1.c
blob
143a449d080c29a60b6553be17e461c38a52bd26
1
/* PR rtl-optimization/24899 */
2
3
extern
void
abort
(
void
);
4
5
__attribute__
((
noinline
))
int
6
foo
(
int
x
,
int
y
,
int
*
z
)
7
{
8
int
a
,
b
,
c
,
d
;
9
10
a
=
b
=
0
;
11
for
(
d
=
0
;
d
<
y
;
d
++)
12
{
13
if
(
z
)
14
b
=
d
* *
z
;
15
for
(
c
=
0
;
c
<
x
;
c
++)
16
a
+=
b
;
17
}
18
19
return
a
;
20
}
21
22
int
23
main
(
void
)
24
{
25
if
(
foo
(
3
,
2
,
0
) !=
0
)
26
abort
();
27
return
0
;
28
}