Why does GCC move variables to a temporary location before assigning them? – stackoverflow.com 10:14 Posted by Unknown No Comments When looking at some decompiled C code I saw this: movl -0x8(%rbp), %esi movl %esi, -0xc(%rbp) This corresponds to this C code: x = y; This got me thinking: how come gcc moves x to %esi and ... from Hot Questions - Stack Exchange OnStackOverflow via Blogspot Share this Unknown
0 Comment to "Why does GCC move variables to a temporary location before assigning them? – stackoverflow.com"
Post a Comment