https://issues.dlang.org/show_bug.cgi?id=5302
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from Walter Bright <[email protected]> --- The attachment: module iasm_test; struct S { uint i; } class A { uint func(S* s) { asm { mov EDX, s; mov EAX, S.i[EDX]; } } } --
