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
/
bug-3027.c
blob
661fc545820dbaa3389396034544b541bc98e717
1
/*
2
bug-3027.c - loop induction left iTemp marked used in a deleted iCode,
3
causing segfault in loop narrowing
4
*/
5
6
#include <testfwk.h>
7
8
void
f
(
int
**
p
,
int
x
)
9
{
10
for
(
unsigned int
i
=
0
;
i
<
100
;
i
++)
11
*
p
[
i
] =
x
;
12
}
13
14
void
testBug
(
void
)
15
{
16
}
17