[Issue 10444] writeln of a SIMD register
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sun Jun 23 15:06:29 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=10444
bearophile_hugs at eml.cc changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|enhancement |normal
--- Comment #1 from bearophile_hugs at eml.cc 2013-06-23 15:06:28 PDT ---
It's kind of needed to print arrays of simd vectors:
import std.stdio: writeln;
import core.simd: int4;
void main() {
int4[] v = [[1, 2, 3, 4], [5, 6, 7, 8]];
writeln(v[0].array, " ", v[1].array); // OK
writeln(v); // error
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list