Take for example the following two instructions:
LEA rax, [label]
MOV rax, label
Is there any actual advantage to using the LEA
instruction instead of the MOV
instruction when it is only a simple address such as this? For instance, might it be faster or a smaller instruction?
Thanks in advance.