This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] opcodes: blackfin: fix style


Committed.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

2011-06-18  Mike Frysinger  <vapier@gentoo.org>

	* bfin.h (is_macmod_pmove): Add missing space before func args.
	(is_macmod_hmove): Likewise.
---
 include/opcode/bfin.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/opcode/bfin.h b/include/opcode/bfin.h
index 730f63c..30bb90d 100755
--- a/include/opcode/bfin.h
+++ b/include/opcode/bfin.h
@@ -41,13 +41,13 @@
 #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);
-- 
1.7.5.3


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]