comparison paper/src/goto.cbc @ 14:6bf2e0196a1e

Add goto.cbc and goto.pdf
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Thu, 19 Jan 2017 11:29:13 +0900
parents
children
comparison
equal deleted inserted replaced
13:99a9be7e6bc9 14:6bf2e0196a1e
1 __code cs0(int a, int b){
2 goto cs1(a+b);
3 }
4
5 __code cs1(int c){
6 goto cs2(c);
7 }