mips-cc

A little C compiler
git clone git@git.mpah.dev/mips-cc.git
Log | Files | Refs | README

16.test (125B)


      1 int foo(int a, int b)
      2 {
      3 	return a + b;
      4 }
      5 
      6 int main()
      7 {
      8 	int a = 1;
      9 	int b = 2;
     10 	foo(a, b);
     11 
     12 	int e = foo(a,b);
     13 
     14 	return 0;
     15 }