add another vector / scalar test

This commit is contained in:
John Cupitt 2017-10-06 17:16:22 +01:00
parent e52d2c9f7f
commit a86b3e677e
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ if test x$have_vector_shuffle = x"yes"; then
AC_TRY_COMPILE([
typedef float v4f __attribute__((vector_size(4 * sizeof(float))));
],[
v4f f = {1, 2, 3, 4}; f *= 12.0;
v4f f = {1, 2, 3, 4}; f *= 12.0; f *= -1;
],[
AC_MSG_RESULT([yes])
have_vector_arith=yes