view CbC-examples/test03.c @ 27:f9b1a53df341

implemented indirect sibcall for ppc.
author kent@teto.cr.ie.u-ryukyu.ac.jp
date Tue, 10 Nov 2009 16:34:29 +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();
}