Update test error message as svbool_t is now treated as a GNU vector.
gcc/testsuite/ChangeLog
* gcc.target/aarch64/sve/acle/general-c/svcount_1.c: Update message.
void f4 (svcount_t *p, svbool_t x) { *p = x; } /* { dg-error {incompatible types} } */
svbool_t *f5 (svcount_t *p) { return p; } /* { dg-error {incompatible return type} } */
svcount_t *f6 (svbool_t *p) { return p; } /* { dg-error {incompatible return type} } */
-svbool_t f7 (svcount_t x) { return (svbool_t) x; } /* { dg-error {conversion to non-scalar} } */
+svbool_t f7 (svcount_t x) { return (svbool_t) x; } /* { dg-error {cannot convert value to a vector} } */
svcount_t f8 (svbool_t x) { return (svcount_t) x; } /* { dg-error {conversion to non-scalar} } */