view CbC-examples/test03.c @ 97:4d6300120c29 cbc-gcc-4.6.0

modify condition of tail call in expand_call method
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 20 Jan 2012 04:48:59 +0900
parents 4c6926a2b9bc
children
line wrap: on
line source


extern void test02() ;
extern void test03() ;

extern int data;

extern void
test01() {
    test02();
}

extern void
test02() {
    test03();
}

extern void
test03() {
    data = 3;
}

int
main()
{
    test01();
}