a-c.c: don't USE_VECTOR_EXT with Clang, since it doesn't compile here.

git-svn-id: https://svn.eduke32.com/eduke32@4733 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2014-11-07 22:07:11 +00:00
parent 0cc9f05b8b
commit 44373a7698

View file

@ -193,7 +193,11 @@ extern int32_t vince[4];
extern intptr_t bufplce[4]; extern intptr_t bufplce[4];
#if (EDUKE32_GCC_PREREQ(4,7) || __has_extension(attribute_ext_vector_type)) && defined BITNESS64 #if (EDUKE32_GCC_PREREQ(4,7) || __has_extension(attribute_ext_vector_type)) && defined BITNESS64
// XXX: The "Ubuntu clang version 3.5-1ubuntu1 (trunk) (based on LLVM 3.5)"
// does not compile us with USE_VECTOR_EXT. Maybe a newer one does?
# if !defined __clang__
# define USE_VECTOR_EXT # define USE_VECTOR_EXT
# endif
#endif #endif
#ifdef USE_VECTOR_EXT #ifdef USE_VECTOR_EXT