You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CIR][Lowering] Support lowering of const arrays of structs (llvm#370)
This PR fixes CIR lowering for the next case.
```
void foo() {
struct {
int a;
int b;
} a[1] = {{0,1}};
}
```
Note, we don't create attribute here and lower such const arrays as
values.
0 commit comments