[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / byte-in-either-range-1.c
blob59040a53c93209399af8216935760e860f01ed85
1 /* { dg-do compile } */
2 /* { dg-require-effective-target powerpc_vsx_ok } */
3 /* { dg-options "-mdejagnu-cpu=power8 -mvsx" } */
5 /* This test should succeed on both 32- and 64-bit configurations. */
6 #include <altivec.h>
8 int
9 test_byte_in_either_range (unsigned char b,
10 unsigned char first_lo_bound,
11 unsigned char first_hi_bound,
12 unsigned char second_lo_bound,
13 unsigned char second_hi_bound)
15 unsigned int range_encoding;
16 range_encoding = ((first_hi_bound << 24) | (first_lo_bound << 16)
17 | (second_hi_bound << 8) | second_lo_bound);
19 return __builtin_byte_in_either_range (b, range_encoding); /* { dg-error "'__builtin_scalar_byte_in_either_range' requires" } */