Result of compilation of C/C++ code is assembler code. In what assembler code next line will be compiled:
a[0] = 1
where a is an integer array in some C++ program.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you use GCC for a compiler, you can use
--save-tempswhich prevents the intermediate files (including the assembly output) from being deleted after it’s done.See http://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html