]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/lazy-binding-reg-params/foo.h
dyld-353.2.1.tar.gz
[apple/dyld.git] / unit-tests / test-cases / lazy-binding-reg-params / foo.h
index 00727805ccb611dce8fe04cd8f6237bdad668442..8b76407db6391c65902eb556d865f7c190149ed0 100644 (file)
@@ -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