Skip to content

bluealert/Cool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cool

Translate the following code

{
	int i; float[100] a; float v;
	while (a[i] < v) {
		i = i + 1;
	}
}

to

L1:	t1 = i * 8
	t2 = a [ t1 ] 
	iffalse t2 < v goto L2
L3:	i = i + 1
	goto L1
L2:

About

《Compilers: Principles, Techniques, and Tools 2nd》 Appendix A

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages