Thread overview
[Issue 396] New: aliased identifier in asm blocks cause compiler segment faults
Oct 03, 2006
d-bugmail
Oct 04, 2006
Thomas Kuehne
Oct 10, 2006
d-bugmail
October 03, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=396

           Summary: aliased identifier in asm blocks cause compiler segment
                    faults
           Product: D
           Version: 0.168
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: thomas-dloop@kuehne.cn


# void main(){
#    int x = 1;
#
#    alias x y;
#
#    asm{
#       mov EAX, x; // OK
#       mov EAX, y; // compiler segment fault
#    }
# }


-- 

October 04, 2006
d-bugmail@puremagic.com schrieb am 2006-10-03:
> http://d.puremagic.com/issues/show_bug.cgi?id=396

> # void main(){
> #    int x = 1;
> #
> #    alias x y;
> #
> #    asm{
> #       mov EAX, x; // OK
> #       mov EAX, y; // compiler segment fault
> #    }
> # }

Added to DStress as http://dstress.kuehne.cn/run/a/alias_38_A.d http://dstress.kuehne.cn/run/a/alias_38_B.d http://dstress.kuehne.cn/run/a/alias_38_C.d

Thomas


October 10, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=396


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #2 from bugzilla@digitalmars.com  2006-10-10 03:30 -------
Fixed DMD 0.169


--