生成反汇编文件
gcc xxx.c -g -o a.out
objdump a.out -dSsx > file
调试的时候查看反汇编:
gdb a.out
...layout asm
参考博文:
https://www.cnblogs.com/exiahan/p/4310010.html