1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-29 12:29:11 +00:00
cc65/test/val/bug1108.c

41 lines
619 B
C
Raw Normal View History

2020-07-20 13:50:11 +00:00
/* bug #1108 - Problem with static locals? */
#include <stdio.h>
#pragma static-locals (on)
unsigned char x = 0;
unsigned char PrintVar1(void)
{
unsigned char cx = x + 1;
printf("cx:%d x:%d\n", cx, x);
return cx == 0;
}
unsigned char PrintVar2(void)
{
unsigned char cx = x + 1;
unsigned char cy;
cy = x + 1;
printf("cx:%d cy:%d x:%d\n", cx, cy, x);
return cx != cy;
}
#pragma static-locals (off)
unsigned char n;
unsigned char ret = 0;
int main(void)
{
for (n = 0; n < 10; n++) {
++x;
ret |= PrintVar1();
ret |= PrintVar2();
}
return ret;
}