[AArch64] Fix ICES with -mgeneral-regs-only / -march=...+nofp
[gcc.git] / gcc / testsuite / gcc.target / aarch64 / mgeneral-regs_1.c
1 /* { dg-options "-mgeneral-regs-only" } */
2
3 typedef int int32x2_t __attribute__ ((__vector_size__ ((8))));
4
5 /* { dg-error "'-mgeneral-regs-only' is incompatible with vector return type" "" {target "aarch64*-*-*"} 7 } */
6 /* { dg-error "'-mgeneral-regs-only' is incompatible with vector argument" "" {target "aarch64*-*-*"} 7 } */
7 int32x2_t test (int32x2_t a, int32x2_t b)
8 {
9 return a + b;
10 }