X-Git-Url: https://git.saurik.com/apple/dyld.git/blobdiff_plain/bac542e65c0030c0d819c7ff1dcfc25892a61844..19894a1236eae932b4028640f24ab843f691d4e4:/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 007f11d..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__ || __x86_64__ - 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