opcodes: blackfin: fix style

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Michael Frysinger 2011-06-18 06:43:57 +00:00
parent c36cd56c54
commit 8dbc35cd76
2 changed files with 7 additions and 2 deletions

View 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.

View File

@ -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);