LEA EAX, [EAX]
I encountered this instruction in a binary compiled with the Microsoft C compiler. It clearly can't change the value of EAX. Then why is it there at all?
I encountered this instruction in a binary compiled with the Microsoft C compiler. It clearly can't change the value of EAX. Then why is it there at all?
| |||||||||||
feedback
|
|
It is a The following are typcially used as
| |||||||||||||||||
feedback
|
|
From this article:
So this is just a kind of NOP, appearing right before targets of jmp instructions in order to align them. Interestingly, you can identify the compiler from the characteristic nature of such instructions. | ||||
feedback
|
Indeed doesn't change the value of EAX. As far as I understand, it's identical in function to:
Did you see it in optimized code, or unoptimized code? | |||||||||||
feedback
|