[Issue 396] New: aliased identifier in asm blocks cause compiler segment faults

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Oct 3 10:18:27 PDT 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 at digitalmars.com
        ReportedBy: thomas-dloop at kuehne.cn


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


-- 




More information about the Digitalmars-d-bugs mailing list