]>
git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/lazy-binding-reg-params/foo.h
1 #include <stdbool.h> // fprintf(), NULL
6 __attribute__((regparm(3)))
8 bool dointtest(int p1
, int p2
, int p3
, int p4
, int p5
);
10 #if __ppc__ || __ppc64__
11 extern bool dofloattest(double,double,double,double,double,double,double,double,double,double,double,double,double);
15 #if __i386__ || __x86_64__ || __ppc__ || __ppc64__
17 #if __i386__ || __x86_64__
18 typedef float vFloat
__attribute__ ((__vector_size__ (16)));
19 #elif __ppc__ || __ppc64__
20 typedef __vector
float vFloat
;
23 extern bool dovectortest(vFloat
, vFloat
, vFloat
, vFloat
, vFloat
);