diff options
author | Michael Frysinger <vapier@gentoo.org> | 2011-06-18 06:43:57 +0000 |
---|---|---|
committer | Michael Frysinger <vapier@gentoo.org> | 2011-06-18 06:43:57 +0000 |
commit | 8dbc35cd764884d852c6e4c9b41c04c417c5f545 (patch) | |
tree | 61b99e90eaf052a6d4445124bbe0e16f02c4eb43 /include/opcode | |
parent | c36cd56c548a27683e64b93348bbe9ad1d47b1ea (diff) | |
download | cygnal-8dbc35cd764884d852c6e4c9b41c04c417c5f545.tar.gz cygnal-8dbc35cd764884d852c6e4c9b41c04c417c5f545.tar.bz2 cygnal-8dbc35cd764884d852c6e4c9b41c04c417c5f545.zip |
opcodes: blackfin: fix style
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/ChangeLog | 5 | ||||
-rwxr-xr-x | include/opcode/bfin.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 782d7fea7..f33c0e65c 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -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. diff --git a/include/opcode/bfin.h b/include/opcode/bfin.h index 730f63c24..30bb90d26 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); |