www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 7898] New: copy in std.algorithm fails in CTFE when used with two arrays

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7898

           Summary: copy in std.algorithm fails in CTFE when used with two
                    arrays
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody puremagic.com
        ReportedBy: xinok live.com



The following code fails in DMD 2.059 but not 2.058. It fails on the pointer
arithmetic, and there's no separate pathway for CTFE.

int test()
{
    import std.algorithm;
    int[] arr1 = [10, 20, 30, 40, 50];
    int[] arr2 = arr1.dup;
    copy(arr1, arr2);
    return 35;
}

void main()
{
    enum v = test();
}

C:\D\dmd2\windows\bin\..\..\src\phobos\std\algorithm.d(5433): Error:
cast(int*)source and cast(int*)target point to independent memory blocks and
cannot be compared at compile time
main.d(15):        called from here: copy(arr1,arr2)
main.d(21):        called from here: test()

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Apr 13 2012
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7898


SomeDude <lovelydear mailmetrash.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lovelydear mailmetrash.com
           Severity|normal                      |regression



PDT ---
Upgraded to regression.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Apr 21 2012
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7898


Kenji Hara <k.hara.pg gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull



https://github.com/D-Programming-Language/phobos/pull/604

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 25 2012
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7898




Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/12a866f0368229c13f5f9fa311d738d61faf4985
fix Issue 7898 - [CTFE] std.algorithm:copy fails when used with two arrays

https://github.com/D-Programming-Language/phobos/commit/9d78612e30fa7bcf264f60b1342b68e20ccb4e56


Issue 7898 - [CTFE] std.algorithm:copy fails when used with two arrays

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 25 2012
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7898


Kenji Hara <k.hara.pg gmail.com> changed:

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


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 28 2012
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7898




Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/399e811eb3cabc9a3839f063962da840fc946343
Undo workaround for bug 7898

Undo commit 12a866f03, which was a fix for
7898 [CTFE] std.algorithm:copy fails when used with two arrays.
The workaround is unnecessary now that
8216 CTFE should allow 'pointer is inside range' comparisons
has been implemented in the compiler.

https://github.com/D-Programming-Language/phobos/commit/8d8f109e06583c99333a348385bd9abae6ae071d


Undo workaround for bug 7898

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