aboutsummaryrefslogtreecommitdiff
path: root/include/opcode/bfin.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-06-18 06:43:57 +0000
committerMike Frysinger <vapier@gentoo.org>2011-06-18 06:43:57 +0000
commit8fb8dca73e98103c67ae0946d200899d7f42df5d (patch)
treea7f916cdb7a16f0dd7fea84e2530d7dbcd219c99 /include/opcode/bfin.h
parent2b8ef54e829d97d6acc1ed8b725b22fcf9fe5ce5 (diff)
downloadgdb-8fb8dca73e98103c67ae0946d200899d7f42df5d.zip
gdb-8fb8dca73e98103c67ae0946d200899d7f42df5d.tar.gz
gdb-8fb8dca73e98103c67ae0946d200899d7f42df5d.tar.bz2
opcodes: blackfin: fix style
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/opcode/bfin.h')
-rwxr-xr-xinclude/opcode/bfin.h4
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);