comparison Paper/src/return.cbc @ 46:b2d28fb0b7a3

tweak anatofuz.tex
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Fri, 09 Nov 2018 16:11:54 +0900
parents d8f77d0a3452
children
comparison
equal deleted inserted replaced
45:e9d84f38fd2a 46:b2d28fb0b7a3
1 __code cs(__code (*ret)(int,void *),void *env){ 1 __code cg(__code (*ret)(int,void *),void *env){
2 goto ret(1,env); 2 goto ret(1,env);
3 } 3 }
4 4
5 int c_func(){ 5 int c_func(){
6 goto cs(_CbC_return,_CbC_environment); 6 goto cg(_CbC_return,_CbC_environment);
7 return -1; 7 return -1;
8 } 8 }
9 9
10 int main(){ 10 int main(){
11 int test; 11 int test;