2020-04-26 06:02 AM
some of the lines in debugging mode in the left column are highlighted in that lines only I can able to put a breakpoint.
I assigned some instruction in non highlighted lines as well in that line can't able to put a breakpoint.
2020-04-26 08:30 AM
There is no code behind the line, either removed or folded by optimizer, of dead code removal by linker.
Code may translate to zero or many lines of assembler, this code may be folded or reordered.
Try turning off the optimization globally or at function level. Check .MAP to confirm routines present, review listing files.