Bug 7898 – [CTFE] std.algorithm:copy fails when used with two arrays

Status
RESOLVED
Resolution
FIXED
Severity
regression
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
All
OS
All
Creation time
2012-04-13T12:38:00Z
Last change time
2012-07-18T20:38:08Z
Keywords
pull
Assigned to
nobody
Creator
xinok

Comments

Comment #0 by xinok — 2012-04-13T12:38:16Z
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()
Comment #1 by lovelydear — 2012-04-21T11:28:51Z
Upgraded to regression.
Comment #2 by k.hara.pg — 2012-05-25T09:35:05Z
Comment #3 by github-bugzilla — 2012-05-25T21:24:16Z
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 Merge pull request #604 from 9rnsr/fix7898 Issue 7898 - [CTFE] std.algorithm:copy fails when used with two arrays
Comment #4 by github-bugzilla — 2012-07-18T20:38:08Z
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 Merge pull request #700 from donc/undo7898workaround Undo workaround for bug 7898