X-Git-Url: https://git.saurik.com/apple/dyld.git/blobdiff_plain/d6f5f96dd73a9fc1307a46119d767ff3261f0f9c..16b475fcb248267b8b51f759bc62a49ec2afa88d:/unit-tests/test-cases/lazy-binding-reg-params/foo.h diff --git a/unit-tests/test-cases/lazy-binding-reg-params/foo.h b/unit-tests/test-cases/lazy-binding-reg-params/foo.h index 38f6da8..8b76407 100644 --- a/unit-tests/test-cases/lazy-binding-reg-params/foo.h +++ b/unit-tests/test-cases/lazy-binding-reg-params/foo.h @@ -12,11 +12,14 @@ extern bool dofloattest(double,double,double,double,double,double,double,double, #endif -#if __i386__ - typedef float vFloat __attribute__ ((__vector_size__ (16))); -#elif __ppc__ || __ppc64__ - typedef vector float vFloat; -#endif +#if __i386__ || __x86_64__ || __ppc__ || __ppc64__ + + #if __i386__ || __x86_64__ + typedef float vFloat __attribute__ ((__vector_size__ (16))); + #elif __ppc__ || __ppc64__ + typedef __vector float vFloat; + #endif -extern bool dovectortest(vFloat, vFloat, vFloat, vFloat, vFloat); + extern bool dovectortest(vFloat, vFloat, vFloat, vFloat, vFloat); +#endif \ No newline at end of file