https://d.puremagic.com/issues/show_bug.cgi?id=12345

           Summary: byLine.popFront() fails with 'Internal error:
                    backend/cod2.c 2200' when compiled with '-inline'
                    switch
           Product: D
           Version: D2
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: saurabh....@gmail.com


--- Comment #0 from Saurabh Das <saurabh....@gmail.com> 2014-03-11 02:42:20 PDT 
---
Consider the file 'byLineError.d':

import std.stdio;

void main()
{
    auto f = File("test");
    f.byLine.popFront();
}


When I compile:

dmd byLineError.d --- succeeds

dmd -inline byLineError.d --- fails with 'Internal error: backend/cod2.c 2200'

I'm running dmd version "DMD64 D Compiler v2.065" on Linux. I don't have access
to Windows/OSX PCs to test it on those OSes.

Note that this variation works:
void main()
{
    auto f = File("test");
    auto x = f.byLine;
    x.popFront();
}

Thanks,
Saurabh

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to