| Issue | 61570 |
|---|---|
| Summary | [OpenMP] Clang crashes in the presence of address spaces |
| Labels | openmp |
| Assignees | |
| Reporter | jdoerfert |
This, compiled for a device, should not crash.
```
static int A[128] __attribute__((address_space(3)));
void as_test() {
#pragma omp target
for (int i = 0; i < 1; ++i)
A[i] = i;
}
```
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
