Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C/C++ 代码的编译结果是汇编代码。下一行将在什么汇编代码中编译:
a[0] = 1
其中 a是某些 C++ 程序中的整数数组。
a
如果您将 GCC 用于编译器,则可以使用--save-tempswhich 防止中间文件(包括程序集输出)在完成后被删除。
--save-temps
见http://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html