查看反汇编代码

objdump -d test   //查看反汇编代码,test是链接或者可执行文件。

gcc -O1 -S test test.c  //编译成为汇编文件,-O1优化级别为1,-S表明编译为汇编文件。

你可能感兴趣的:(查看反汇编代码)