-
Bug
-
Resolution: Fixed
-
Medium
-
Code Generation Tools
-
CODEGEN-10214
-
-
-
default
-
Using a pointer conversion to type pun between a complex and non-complex vector type may result in incorrect representation of the complex result in register. For example:
float2 fvec = (float2)(1.0f, 2.0f);
cfloat cfvec = ((cfloat)&fvec);
Will result in an incorrect ordering of the contents in cfvec.