fxsrintrin.h (_fxsave): Remove return keyword in inlines returning void.
authorJakub Jelinek <jakub@redhat.com>
Fri, 19 Aug 2016 15:24:22 +0000 (17:24 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 19 Aug 2016 15:24:22 +0000 (17:24 +0200)
* config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
returning void.
(_fxrstor, _fxsave64, _fxrstor64): Likewise.
* config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
Likewise.
* config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
* config/i386/pkuintrin.h (_wrpkru): Likewise.  Add space after
function name.
(_rdpkru_u32): Add space after function name.

From-SVN: r239616

gcc/ChangeLog
gcc/config/i386/fxsrintrin.h
gcc/config/i386/pkuintrin.h
gcc/config/i386/xsaveintrin.h
gcc/config/i386/xsaveoptintrin.h

index 8a3bd72745a17bf4e2a69542ecc2a25b06c14800..6ddf276f8b4a4e0067ac0d213e6e4f274dd400e5 100644 (file)
@@ -1,5 +1,15 @@
 2016-08-19  Jakub Jelinek  <jakub@redhat.com>
 
+       * config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
+       returning void.
+       (_fxrstor, _fxsave64, _fxrstor64): Likewise.
+       * config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
+       Likewise.
+       * config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
+       * config/i386/pkuintrin.h (_wrpkru): Likewise.  Add space after
+       function name.
+       (_rdpkru_u32): Add space after function name.
+
        * config/i386/t-i386 (i386-c.o): Don't depend on
        i386-builtin-types.inc.
        (i386.o): Depend on i386-builtin-types.inc.
index b18b898c26a56d40d2ef3721ad7bbee4eb641196..b457e97fad5d44a2ba8d1c2a4aa34fc8b8997863 100644 (file)
@@ -38,14 +38,14 @@ extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _fxsave (void *__P)
 {
-  return __builtin_ia32_fxsave (__P);
+  __builtin_ia32_fxsave (__P);
 }
 
 extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _fxrstor (void *__P)
 {
-  return __builtin_ia32_fxrstor (__P);
+  __builtin_ia32_fxrstor (__P);
 }
 
 #ifdef __x86_64__
@@ -53,14 +53,14 @@ extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _fxsave64 (void *__P)
 {
-    return __builtin_ia32_fxsave64 (__P);
+  __builtin_ia32_fxsave64 (__P);
 }
 
 extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _fxrstor64 (void *__P)
 {
-    return __builtin_ia32_fxrstor64 (__P);
+  __builtin_ia32_fxrstor64 (__P);
 }
 #endif
 
index 09fdcd1d3f391616cd6598971a72810ec1f2e054..e9cfb4eeaa102081004c66bf2c84b5a11907f456 100644 (file)
 
 extern __inline unsigned int
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
-_rdpkru_u32(void)
+_rdpkru_u32 (void)
 {
   return __builtin_ia32_rdpkru ();
 }
 
 extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
-_wrpkru(unsigned int key)
+_wrpkru (unsigned int key)
 {
-  return __builtin_ia32_wrpkru (key);
+  __builtin_ia32_wrpkru (key);
 }
 
 #ifdef __DISABLE_PKU__
index 53616b7228155b94ea75a41bb2eb7b29f57133b9..523a8c4089eafa8714db01f8e4b2371ae8151185 100644 (file)
@@ -38,14 +38,14 @@ extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _xsave (void *__P, long long __M)
 {
-  return __builtin_ia32_xsave (__P, __M);
+  __builtin_ia32_xsave (__P, __M);
 }
 
 extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _xrstor (void *__P, long long __M)
 {
-  return __builtin_ia32_xrstor (__P, __M);
+  __builtin_ia32_xrstor (__P, __M);
 }
 
 #ifdef __x86_64__
@@ -53,14 +53,14 @@ extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _xsave64 (void *__P, long long __M)
 {
-  return __builtin_ia32_xsave64 (__P, __M);
+  __builtin_ia32_xsave64 (__P, __M);
 }
 
 extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _xrstor64 (void *__P, long long __M)
 {
-  return __builtin_ia32_xrstor64 (__P, __M);
+  __builtin_ia32_xrstor64 (__P, __M);
 }
 #endif
 
index 2569824bb81597c3935935d9b7f5893a2c527347..25bb238556008d1562ff9013d5e78db945423727 100644 (file)
@@ -38,7 +38,7 @@ extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _xsaveopt (void *__P, long long __M)
 {
-  return __builtin_ia32_xsaveopt (__P, __M);
+  __builtin_ia32_xsaveopt (__P, __M);
 }
 
 #ifdef __x86_64__
@@ -46,7 +46,7 @@ extern __inline void
 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _xsaveopt64 (void *__P, long long __M)
 {
-  return __builtin_ia32_xsaveopt64 (__P, __M);
+  __builtin_ia32_xsaveopt64 (__P, __M);
 }
 #endif