Print this page
6648 illumos build should be explicit about C standards

@@ -37,22 +37,22 @@
                 uint16_t cw;
                 uint16_t sw;
         } words;
 };
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_getcwsw(unsigned int *value)
 {
         union fp_cwsw *u = (union fp_cwsw *)value;
 
         __asm__ __volatile__(
             "fstsw %0\n\t"
             "fstcw %1\n\t"
             : "=m" (u->words.cw), "=m" (u->words.sw));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_setcwsw(const unsigned int *value)
 {
         union fp_cwsw cwsw;
         short fenv[16];
 

@@ -69,32 +69,32 @@
             /* For practical purposes, we clobber the whole FPU */
             : "cc", "st", "st(1)", "st(2)", "st(3)", "st(4)", "st(5)",
               "st(6)", "st(7)");
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_getmxcsr(unsigned int *value)
 {
         __asm__ __volatile__("stmxcsr %0" : "=m" (*value));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_setmxcsr(const unsigned int *value)
 {
         __asm__ __volatile__("ldmxcsr %0" : : "m" (*value));
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 f2xm1(long double x)
 {
         long double ret;
 
         __asm__ __volatile__("f2xm1" : "=t" (ret) : "0" (x) : "cc");
         return (ret);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fyl2x(long double y, long double x)
 {
         long double ret;
 
         __asm__ __volatile__("fyl2x"

@@ -102,11 +102,11 @@
             : "0" (x), "u" (y)
             : "st(1)", "cc");
         return (ret);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fptan(long double x)
 {
         /*
          * fptan pushes 1.0 then the result on completion, so we want to pop
          * the FP stack twice, so we need a dummy value into which to pop it.

@@ -119,11 +119,11 @@
             : "0" (x)
             : "cc");
         return (ret);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fpatan(long double x, long double y)
 {
         long double ret;
 
         __asm__ __volatile__("fpatan"

@@ -131,32 +131,32 @@
             : "0" (y), "u" (x)
             : "st(1)", "cc");
         return (ret);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fxtract(long double x)
 {
         __asm__ __volatile__("fxtract" : "+t" (x) : : "cc");
         return (x);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fprem1(long double idend, long double div)
 {
         __asm__ __volatile__("fprem1" : "+t" (div) : "u" (idend) : "cc");
         return (div);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fprem(long double idend, long double div)
 {
         __asm__ __volatile__("fprem" : "+t" (div) : "u" (idend) : "cc");
         return (div);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fyl2xp1(long double y, long double x)
 {
         long double ret;
 
         __asm__ __volatile__("fyl2xp1"

@@ -164,161 +164,161 @@
             : "0" (x), "u" (y)
             : "st(1)", "cc");
         return (ret);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fsqrt(long double x)
 {
         __asm__ __volatile__("fsqrt" : "+t" (x) : : "cc");
         return (x);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fsincos(long double x)
 {
         long double dummy;
 
         __asm__ __volatile__("fsincos" : "+t" (x), "=u" (dummy) : : "cc");
         return (x);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 frndint(long double x)
 {
         __asm__ __volatile__("frndint" : "+t" (x) : : "cc");
         return (x);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fscale(long double x, long double y)
 {
         long double ret;
 
         __asm__ __volatile__("fscale" : "=t" (ret) : "0" (y), "u" (x) : "cc");
         return (ret);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fsin(long double x)
 {
         __asm__ __volatile__("fsin" : "+t" (x) : : "cc");
         return (x);
 }
 
-extern __inline__ long double
+extern __GNU_INLINE long double
 fcos(long double x)
 {
         __asm__ __volatile__("fcos" : "+t" (x) : : "cc");
         return (x);
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpeqss(float *f1, float *f2, int *i1)
 {
         __asm__ __volatile__(
             "cmpeqss %2, %1\n\t"
             "movss   %1, %0"
             : "=m" (*i1), "+x" (*f1)
             : "x" (*f2)
             : "cc");
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpltss(float *f1, float *f2, int *i1)
 {
         __asm__ __volatile__(
             "cmpltss %2, %1\n\t"
             "movss   %1, %0"
             : "=m" (*i1), "+x" (*f1)
             : "x" (*f2)
             : "cc");
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpless(float *f1, float *f2, int *i1)
 {
         __asm__ __volatile__(
             "cmpless %2, %1\n\t"
             "movss   %1, %0"
             : "=m" (*i1), "+x" (*f1)
             : "x" (*f2)
             : "cc");
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpunordss(float *f1, float *f2, int *i1)
 {
         __asm__ __volatile__(
             "cmpunordss %2, %1\n\t"
             "movss      %1, %0"
             : "=m" (*i1), "+x" (*f1)
             : "x" (*f2)
             : "cc");
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_minss(float *f1, float *f2, float *f3)
 {
         __asm__ __volatile__(
             "minss %2, %1\n\t"
             "movss %1, %0"
             : "=m" (*f3), "+x" (*f1)
             : "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_maxss(float *f1, float *f2, float *f3)
 {
         __asm__ __volatile__(
             "maxss %2, %1\n\t"
             "movss %1, %0"
             : "=m" (*f3), "+x" (*f1)
             : "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_addss(float *f1, float *f2, float *f3)
 {
         __asm__ __volatile__(
             "addss %2, %1\n\t"
             "movss %1, %0"
             : "=m" (*f3), "+x" (*f1)
             : "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_subss(float *f1, float *f2, float *f3)
 {
         __asm__ __volatile__(
             "subss %2, %1\n\t"
             "movss %1, %0"
             : "=m" (*f3), "+x" (*f1)
             : "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_mulss(float *f1, float *f2, float *f3)
 {
         __asm__ __volatile__(
             "mulss %2, %1\n\t"
             "movss %1, %0"
             : "=m" (*f3), "+x" (*f1)
             : "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_divss(float *f1, float *f2, float *f3)
 {
         __asm__ __volatile__(
             "divss %2, %1\n\t"
             "movss %1, %0"
             : "=m" (*f3), "+x" (*f1)
             : "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_sqrtss(float *f1, float *f2)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -326,24 +326,24 @@
             "movss  %1, %0"
             : "=m" (*f2), "=x" (tmp)
             : "m" (*f1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_ucomiss(float *f1, float *f2)
 {
         __asm__ __volatile__("ucomiss %1, %0" : : "x" (*f1), "x" (*f2));
 
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_comiss(float *f1, float *f2)
 {
         __asm__ __volatile__("comiss %1, %0" : : "x" (*f1), "x" (*f2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtss2sd(float *f1, double *d1)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -351,11 +351,11 @@
             "movsd    %1, %0"
             : "=m" (*d1), "=x" (tmp)
             : "m" (*f1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsi2ss(int *i1, float *f1)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -363,11 +363,11 @@
             "movss    %1, %0"
             : "=m" (*f1), "=x" (tmp)
             : "m" (*i1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvttss2si(float *f1, int *i1)
 {
         int tmp;
 
         __asm__ __volatile__(

@@ -375,11 +375,11 @@
             "movl      %1, %0"
             : "=m" (*i1), "=r" (tmp)
             : "m" (*f1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtss2si(float *f1, int *i1)
 {
         int tmp;
 
         __asm__ __volatile__(

@@ -388,11 +388,11 @@
             : "=m" (*i1), "=r" (tmp)
             : "m" (*f1));
 }
 
 #if defined(__amd64)
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsi2ssq(long long *ll1, float *f1)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -400,11 +400,11 @@
             "movss     %1, %0"
             : "=m" (*f1), "=x" (tmp)
             : "m" (*ll1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvttss2siq(float *f1, long long *ll1)
 {
         uint64_t tmp;
 
         __asm__ __volatile__(

@@ -412,11 +412,11 @@
             "movq       %1, %0"
             : "=m" (*ll1), "=r" (tmp)
             : "m" (*f1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtss2siq(float *f1, long long *ll1)
 {
         uint64_t tmp;
 
         __asm__ __volatile__(

@@ -426,112 +426,112 @@
             : "m" (*f1));
 }
 
 #endif
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpeqsd(double *d1, double *d2, long long *ll1)
 {
         __asm__ __volatile__(
             "cmpeqsd %2,%1\n\t"
             "movsd   %1,%0"
             : "=m" (*ll1), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpltsd(double *d1, double *d2, long long *ll1)
 {
         __asm__ __volatile__(
             "cmpltsd %2,%1\n\t"
             "movsd   %1,%0"
             : "=m" (*ll1), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmplesd(double *d1, double *d2, long long *ll1)
 {
         __asm__ __volatile__(
             "cmplesd %2,%1\n\t"
             "movsd   %1,%0"
             : "=m" (*ll1), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cmpunordsd(double *d1, double *d2, long long *ll1)
 {
         __asm__ __volatile__(
             "cmpunordsd %2,%1\n\t"
             "movsd      %1,%0"
             : "=m" (*ll1), "+x" (*d1)
             : "x" (*d2));
 }
 
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_minsd(double *d1, double *d2, double *d3)
 {
         __asm__ __volatile__(
             "minsd %2,%1\n\t"
             "movsd %1,%0"
             : "=m" (*d3), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_maxsd(double *d1, double *d2, double *d3)
 {
         __asm__ __volatile__(
             "maxsd %2,%1\n\t"
             "movsd %1,%0"
             : "=m" (*d3), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_addsd(double *d1, double *d2, double *d3)
 {
         __asm__ __volatile__(
             "addsd %2,%1\n\t"
             "movsd %1,%0"
             : "=m" (*d3), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_subsd(double *d1, double *d2, double *d3)
 {
         __asm__ __volatile__(
             "subsd %2,%1\n\t"
             "movsd %1,%0"
             : "=m" (*d3), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_mulsd(double *d1, double *d2, double *d3)
 {
         __asm__ __volatile__(
             "mulsd %2,%1\n\t"
             "movsd %1,%0"
             : "=m" (*d3), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_divsd(double *d1, double *d2, double *d3)
 {
         __asm__ __volatile__(
             "divsd %2,%1\n\t"
             "movsd %1,%0"
             : "=m" (*d3), "+x" (*d1)
             : "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_sqrtsd(double *d1, double *d2)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -539,23 +539,23 @@
             "movsd %1, %0"
             : "=m" (*d2), "=x" (tmp)
             : "m" (*d1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_ucomisd(double *d1, double *d2)
 {
         __asm__ __volatile__("ucomisd %1, %0" : : "x" (*d1), "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_comisd(double *d1, double *d2)
 {
         __asm__ __volatile__("comisd %1, %0" : : "x" (*d1), "x" (*d2));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsd2ss(double *d1, float *f1)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -563,22 +563,22 @@
             "movss    %1,%0"
             : "=m" (*f1), "=x" (tmp)
             : "m" (*d1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsi2sd(int *i1, double *d1)
 {
         double tmp;
         __asm__ __volatile__(
             "cvtsi2sd %2,%1\n\t"
             "movsd    %1,%0"
             : "=m" (*d1), "=x" (tmp)
             : "m" (*i1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvttsd2si(double *d1, int *i1)
 {
         int tmp;
 
         __asm__ __volatile__(

@@ -586,11 +586,11 @@
             "movl      %1,%0"
             : "=m" (*i1), "=r" (tmp)
             : "m" (*d1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsd2si(double *d1, int *i1)
 {
         int tmp;
 
         __asm__ __volatile__(

@@ -599,11 +599,11 @@
             : "=m" (*i1), "=r" (tmp)
             : "m" (*d1));
 }
 
 #if defined(__amd64)
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsi2sdq(long long *ll1, double *d1)
 {
         double tmp;
 
         __asm__ __volatile__(

@@ -611,11 +611,11 @@
             "movsd     %1,%0"
             : "=m" (*d1), "=x" (tmp)
             : "m" (*ll1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvttsd2siq(double *d1, long long *ll1)
 {
         uint64_t tmp;
 
         __asm__ __volatile__(

@@ -623,11 +623,11 @@
             "movq       %1,%0"
             : "=m" (*ll1), "=r" (tmp)
             : "m" (*d1));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 sse_cvtsd2siq(double *d1, long long *ll1)
 {
         uint64_t tmp;
 
         __asm__ __volatile__(

@@ -637,11 +637,11 @@
             : "m" (*d1));
 }
 #endif
 
 #elif defined(__sparc)
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_getfsr(unsigned long *l)
 {
         __asm__ __volatile__(
 #if defined(__sparcv9)
                 "stx %%fsr,%0\n\t"

@@ -649,11 +649,11 @@
                 "st  %%fsr,%0\n\t"
 #endif
                 : "=m" (*l));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_setfsr(const unsigned long *l)
 {
         __asm__ __volatile__(
 #if defined(__sparcv9)
                 "ldx %0,%%fsr\n\t"

@@ -661,17 +661,17 @@
                 "ld %0,%%fsr\n\t"
 #endif
                 : : "m" (*l) : "cc");
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_getfsr32(unsigned int *l)
 {
         __asm__ __volatile__("st %%fsr,%0\n\t" : "=m" (*l));
 }
 
-extern __inline__ void
+extern __GNU_INLINE void
 __fenv_setfsr32(const unsigned int *l)
 {
         __asm__ __volatile__("ld %0,%%fsr\n\t" : : "m" (*l));
 }
 #else