This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello
Is it possible to make labels in the C source code appear as labels in the assembly output (regardless of whether they are used or not)? I know about the possibility of using asm statements instead of C source statements, but spru514r, Optimizing C C++ Compiler User’s Guide (section 7.5.5) warns against doing this.
Thanks and kind regards,
Mirko
Is it possible to make labels in the C source code appear as labels in the assembly output
Unfortunately, no. Even if you create a label with an asm statement, there is no way to refer to that label from C code.
Thanks and regards,
-George