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
Announce SDCC 4.5.0 RC2.
[sdcc.git]
/
sdcc
/
support
/
valdiag
/
tests
/
bug-3603.c
blob
22b11c5a0106682e077d567bb7b958086323ff14
1
/* bug-3464.c
2
3
Issues in the diagnostics for attempting to take the address of the result of an unary operator.
4
*/
5
6
#ifdef TEST1
7
int
*
p
(
int
i
)
8
{
9
return
&(-
i
);
/* ERROR */
10
}
11
#endif
12