view paper/src/excbc.cbc @ 4:bf1f62556b81

add while_test_init_imple
author soto
date Thu, 11 Feb 2021 17:03:31 +0900
parents 959f4b34d6f4
children
line wrap: on
line source

__code cs0(int a, int b) {
    goto cs1(a+b);
}

__code cs1(int c) {
    goto cs2(c);
}