Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #558 from rainers/arrayop_rvalue_overlap
Browse files Browse the repository at this point in the history
remove bad contraints on overlapping rvalues of array operations
  • Loading branch information
MartinNowak committed Aug 7, 2013
2 parents f1ae0d0 + d17af4b commit 4109c39
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 16 deletions.
2 changes: 0 additions & 2 deletions src/rt/arraybyte.d
Expand Up @@ -303,7 +303,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -1323,7 +1322,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down
3 changes: 0 additions & 3 deletions src/rt/arraydouble.d
Expand Up @@ -65,7 +65,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -178,7 +177,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -1118,7 +1116,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down
3 changes: 0 additions & 3 deletions src/rt/arrayfloat.d
Expand Up @@ -169,7 +169,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -227,7 +226,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -285,7 +283,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down
3 changes: 0 additions & 3 deletions src/rt/arrayint.d
Expand Up @@ -276,7 +276,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -1201,7 +1200,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -1920,7 +1918,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down
2 changes: 0 additions & 2 deletions src/rt/arrayreal.d
Expand Up @@ -62,7 +62,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -121,7 +120,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down
3 changes: 0 additions & 3 deletions src/rt/arrayshort.d
Expand Up @@ -249,7 +249,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -1123,7 +1122,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down Expand Up @@ -1814,7 +1812,6 @@ in
assert(a.length == b.length && b.length == c.length);
assert(disjoint(a, b));
assert(disjoint(a, c));
assert(disjoint(b, c));
}
body
{
Expand Down

0 comments on commit 4109c39

Please sign in to comment.