Commit 2eb20cac authored by James Almer's avatar James Almer

Merge commit 'd76479c5'

* commit 'd76479c5':
  ppc: Drop support for Apple GCC
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents e621b1ca d76479c5
...@@ -1908,7 +1908,6 @@ HAVE_LIST_PUB=" ...@@ -1908,7 +1908,6 @@ HAVE_LIST_PUB="
" "
HEADERS_LIST=" HEADERS_LIST="
altivec_h
arpa_inet_h arpa_inet_h
asm_types_h asm_types_h
cdio_paranoia_h cdio_paranoia_h
...@@ -5579,15 +5578,12 @@ elif enabled ppc; then ...@@ -5579,15 +5578,12 @@ elif enabled ppc; then
check_inline_asm ppc4xx '"maclhw r10, r11, r12"' check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
# AltiVec flags: The FSF version of GCC differs from the Apple version
if enabled altivec; then if enabled altivec; then
check_cflags -maltivec -mabi=altivec && check_cflags -maltivec -mabi=altivec
{ check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
check_cflags -faltivec
# check if our compiler supports Motorola AltiVec C API # check if our compiler supports Motorola AltiVec C API
check_cc <<EOF || disable altivec check_cc <<EOF || disable altivec
$inc_altivec_h #include <altivec.h>
int main(void) { int main(void) {
vector signed int v1 = (vector signed int) { 0 }; vector signed int v1 = (vector signed int) { 0 };
vector signed int v2 = (vector signed int) { 1 }; vector signed int v2 = (vector signed int) { 1 };
...@@ -5602,7 +5598,7 @@ EOF ...@@ -5602,7 +5598,7 @@ EOF
if enabled vsx; then if enabled vsx; then
check_cflags -mvsx && check_cflags -mvsx &&
check_cc <<EOF || disable vsx check_cc <<EOF || disable vsx
$inc_altivec_h #include <altivec.h>
int main(void) { int main(void) {
int v[4] = { 0 }; int v[4] = { 0 };
vector signed int v1 = vec_vsx_ld(0, v); vector signed int v1 = vec_vsx_ld(0, v);
......
...@@ -28,10 +28,6 @@ ...@@ -28,10 +28,6 @@
#include "config.h" #include "config.h"
#if HAVE_ALTIVEC_H
#include <altivec.h>
#endif
/*********************************************************************** /***********************************************************************
* Vector types * Vector types
**********************************************************************/ **********************************************************************/
...@@ -56,6 +52,7 @@ ...@@ -56,6 +52,7 @@
#define zero_s32v (vec_s32) zerov #define zero_s32v (vec_s32) zerov
#if HAVE_ALTIVEC #if HAVE_ALTIVEC
#include <altivec.h>
// used to build registers permutation vectors (vcprm) // used to build registers permutation vectors (vcprm)
// the 's' are for words in the _s_econd vector // the 's' are for words in the _s_econd vector
......
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