opcodes: blackfin: fix style
authorMike Frysinger <vapier@gentoo.org>
Sat, 18 Jun 2011 06:43:57 +0000 (06:43 +0000)
committerMike Frysinger <vapier@gentoo.org>
Sat, 18 Jun 2011 06:43:57 +0000 (06:43 +0000)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
include/opcode/ChangeLog
include/opcode/bfin.h

index 782d7fea7a2cc23454efb7ac89d59c14cbb668de..f33c0e65c8f16e4e495cc3e5e8ddbd992bb33718 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-18  Mike Frysinger  <vapier@gentoo.org>
+
+       * bfin.h (is_macmod_pmove): Add missing space before func args.
+       (is_macmod_hmove): Likewise.
+
 2011-06-13  Walter Lee  <walt@tilera.com>
 
        * tilegx.h: New file.
index 730f63c24c527b69c61281098ffcd727ad78d358..30bb90d26c5c85f5c7f9c4827342a91c77ea2446 100755 (executable)
 #define M_IH    11
 #define M_IU    12
 
-static inline int is_macmod_pmove(int x)
+static inline int is_macmod_pmove (int x)
 {
   return (x == 0) || (x == M_IS) || (x == M_FU) || (x == M_S2RND)
          || (x == M_ISS2) || (x == M_IU);
 }
 
-static inline int is_macmod_hmove(int x)
+static inline int is_macmod_hmove (int x)
 {
   return (x == 0) || (x == M_IS) || (x == M_FU) || (x == M_IU) || (x == M_T)
          || (x == M_TFU) || (x == M_S2RND) || (x == M_ISS2) || (x == M_IH);
This page took 0.025895 seconds and 4 git commands to generate.