Issue 109043
Summary [HLSL] Array by-value assignment
Labels new issue
Assignees spall
Reporter spall
    Currently arrays are not assignable.
The following code should compile successfully:

`export void fn() {
  int Arr[2] = {1, 2};
  int Arr2[2] = {0, 0};
  Arr2 = Arr;
}`

_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to