我想从汇编的层次上分析我的代码
比如
int tutu(int a,int b){
int c;
c=a+b;
return c;
}
public int main(void){
int x;
x=tutu(3,4);
return 0;}
我如何才能编译成汇编代码