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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug3188899.c
blob
e9fd43913cbb49f68e63a5808dfbea09b6e6bf99
1
/*
2
* bug3188899.c
3
*/
4
5
#include <testfwk.h>
6
7
/* bug 3188899
8
?ASlink-Warning-Undefined Global '_s1' referenced by module
9
_s1 should be _testBug3188899_s1_1_1 */
10
void
*
testBug3188899
(
void
)
11
{
12
static char
s1
;
13
static void
*
const
__code s2
= &
s1
;
14
return
s2
;
15
}