Issue 127551
Summary [HLSL] Allow array to be initialized from an array of the same type
Labels HLSL
Assignees
Reporter llvm-beanz
    HLSL allows a constant-sized array variable to be initialized from an array of the same type.

```hlsl
typedef int4 int8[2];

export void fn(int8 A, F B) {
    int8 a = A;
}
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to