Which of the following is an example of a label generated by gcc-assembler when dealing with loops?
Question options:
|
.L1 |
|
|
.LFE0 |
|
|
.LC0 |
|
|
.LFE |
.L1 is an example of label generated by gcc-assembler when using loops
the example is
L1:
<loop body>
loop L1
if you like the answer please provide a thumbs up.
Which of the following is an example of a label generated by gcc-assembler when dealing with...