Commit 092951f4 authored by James Almer's avatar James Almer

Merge commit '6a7e9285'

* commit '6a7e9285':
  configure: Do not check for the __builtin_vec_vsx_ld
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 51e091e2 6a7e9285
......@@ -5605,7 +5605,14 @@ EOF
if enabled vsx; then
check_cflags -mvsx &&
check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
check_cc <<EOF || disable vsx
$inc_altivec_h
int main(void) {
int v[4] = { 0 };
vector signed int v1 = vec_vsx_ld(0, v);
return 0;
}
EOF
fi
if enabled power8; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment