blob: 0f601fbbb505a0a24582bd177444289129c8e339 [file] [log] [blame]
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-require-effective-target ilp32 } */
/* { dg-require-effective-target powerpc_p9vector_ok } */
/* { dg-options "-mdejagnu-cpu=power9" } */
#include <stddef.h>
#include <altivec.h>
/* This test only runs on 32-bit configurations, where a compiler
error should be issued because this built-in function is not
available on 32-bit configurations. */
int
fetch_data (float *address, size_t length)
{
return __builtin_vec_lxvl (address, length); /* { dg-error "'__builtin_vsx_lxvl' requires the" } */
}