We only support and report warning for RVV types.
We don't report warning for GNU vectors.
So this testcase checking is incorrect and the FAIL is bogus.
Remove it and commit it.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/rvv/base/vector-abi-9.c: Removed.
+++ /dev/null
-/* { dg-do compile } */
-/* { dg-options "-march=rv64gcv -mabi=lp64d --param=riscv-autovec-preference=fixed-vlmax" } */
-
-#include "riscv_vector.h"
-
-typedef int v4si __attribute__ ((vector_size (16)));
-
-v4si
-fun (v4si a) { return a; } /* { dg-warning "the vector type" } */
-
-void
-bar ()
-{
- v4si a;
- fun (a);
-}