| Issue |
56686
|
| Summary |
[AARCH64][GlobalIsel] SVE support
|
| Labels |
new issue
|
| Assignees |
|
| Reporter |
tschuett
|
This minimal example suffices to crash the IR translator:
```bash
fatal error: error in backend: unable to translate instruction: alloca (in function: main)
```
```c
#include <arm_sve.h>
int main(int argc, char **argv) {
svfloat64_t x;
return 0;
}
```
```bash
clang -target aarch64-none-linux-gnu -mcpu=neoverse-v1 -mllvm -global-isel-abort=1 -c main.c
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs