On MS-style, the following snippet:
int eax;
__asm mov eax, ebx
should yield loading of ebx, into the location pointed by the variable eax
This patch sees to it.
Currently, a reg-to-reg move would have been invoked.
llvm: D34739
Differential D34740
[X86][InlineAsm][Ms Compatibility]Prefer variable name over a register when the two collides coby on Jun 27 2017, 11:54 PM. Authored by
Details
On MS-style, the following snippet: int eax; should yield loading of ebx, into the location pointed by the variable eax This patch sees to it. Currently, a reg-to-reg move would have been invoked. llvm: D34739
Diff Detail
|