Mercurial > hg > CbC > CbC_gcc
view CbC-examples/test03.c @ 25:2476ed92181e
modified machine description of i386 for support indirect sibcall attributed fastcall.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 27 Oct 2009 16:04:06 +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(); }