repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
gcc-torture-execute-pr83298.c
blob
a437f67605a39efa719732888420eca8f3a67b38
1
/*
2
pr83298.c from the execute part of the gcc torture tests.
3
*/
4
5
#include <testfwk.h>
6
7
8
int
a
,
b
,
c
=
1
;
9
10
void
11
testTortureExecute
(
void
)
12
{
13
for
(;
b
<
1
;
b
++)
14
;
15
if
(!(
c
* (
a
<
1
)))
16
ASSERT
(
0
);
17
return
;
18
}