Reputation: 169
What does leal (%eax, %eax)
do? Does that multiply the contents at %eax * 2 since it has parens?
Upvotes: 2
Views: 1204
Reputation: 62048
It will load the destination operand with the sum of eax
and eax
, IOW, 2*eax
.
Upvotes: 4