mirror of
https://github.com/cc65/cc65.git
synced 2024-11-20 12:32:58 +00:00
11 lines
231 B
C
11 lines
231 B
C
/* bug #1075 Internal compiler error */
|
|
|
|
long rhs;
|
|
|
|
int main(void)
|
|
{
|
|
/* the whole lhs is errorneously treated as an absolute address (integer
|
|
constant) neglecting its dereference */
|
|
return *(char *)0xD77C + rhs;
|
|
}
|