aboutsummaryrefslogtreecommitdiff
path: root/opcodes/v850-opc.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1996-08-23 18:17:31 +0000
committerJeff Law <law@redhat.com>1996-08-23 18:17:31 +0000
commitb1e897a97dad8c102a700f89b9bf3b1fd0f00be5 (patch)
treee7826b3ec81142da5ed511d32c256d0c4d8d2ad7 /opcodes/v850-opc.c
parentad9889dd59a125d36742b9015e335d6b23dd0874 (diff)
downloadgdb-b1e897a97dad8c102a700f89b9bf3b1fd0f00be5.zip
gdb-b1e897a97dad8c102a700f89b9bf3b1fd0f00be5.tar.gz
gdb-b1e897a97dad8c102a700f89b9bf3b1fd0f00be5.tar.bz2
* v850-opc.c (two): Get order of words correct.
Diffstat (limited to 'opcodes/v850-opc.c')
-rw-r--r--opcodes/v850-opc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/v850-opc.c b/opcodes/v850-opc.c
index 39cb57b..87e2452 100644
--- a/opcodes/v850-opc.c
+++ b/opcodes/v850-opc.c
@@ -17,7 +17,7 @@ static long extract_d9 PARAMS ((unsigned long, int *));
#define one(x) ((unsigned int) (x))
/* two-word opcodes */
-#define two(x,y) ((unsigned int) (y) | ((unsigned int) (x) << 16))
+#define two(x,y) ((unsigned int) (x) | ((unsigned int) (y) << 16))