1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Add explicit postinc/dec testcase

This commit is contained in:
Lauri Kasanen 2017-05-07 20:35:49 +03:00
parent a2f61c667a
commit 7adcde1707

23
test/val/postincdec.c Normal file
View File

@ -0,0 +1,23 @@
/*
!!DESCRIPTION!! char-sized post-increment and -decrement
!!ORIGIN!! cc65 regression tests
!!LICENCE!! Public Domain
!!AUTHOR!! Lauri Kasanen
*/
static unsigned char val, array[2];
int main() {
val = 0;
array[0] = array[1] = 10;
array[val++] = 2;
array[val++] = 2;
--val;
array[val--] = 0;
array[val--] = 0;
return (array[0] == array[1] && array[0] == 0) ? 0 : 1;
}