http://d.puremagic.com/issues/show_bug.cgi?id=10312
Summary: compiler assert failure with ctfe on simd vector type
Product: D
Version: D2
Platform: x86_64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Roderick Gibson <[email protected]> 2013-06-08 18:30:38 PDT
---
I get a compiler assert failing when trying to compile the follow
minimal case:
import core.simd;
void main() {
auto arr = si;
}
const float4 si = [1f, 1f, 1f, 1f];
This compiles fine:
import core.simd;
void main() {
auto arr = si;
}
float4 si = [1f, 1f, 1f, 1f];
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------