Extend support for expressions which represent a variable access in ms-style inline-asm, to allow the incorporation of both registers and variables.
Currently, expression such as 'asm mov eax, [var + eax]' would have been reduced to the (equivalent of) 'asm mov eax, [var]'
This patch amends it
llvm counterpart: D35774
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM