Displaying 1 result from an estimated 1 matches for "be967f04".
2020 Feb 12
2
tool options to generate spill code
Hello,
For the following test case, reg.c
#include <stdio.h>
int getinput()
{
static int u=10;
return u++;
}
int main()
{
int a,b,c,d,e,f,g;
a=getinput();
b=getinput();
c=getinput();
d=getinput();
e=getinput();
f=getinput();
g=getinput();
printf("%d %d %d %d %d %d %d\n",a,b,c,d,e,f,g);
a=b=c=d=e=f=g=0;
return 0;
}
*1.